I think I have been able to solve it by forcing it to connect to the network I want, adding the command M552 S1 "My network".
Before I only had the M552 S1 command, without the network.
Thanks for your time and help. I hope this can help others who have the same problem.
Best posts made by amimafe
-
RE: DUET2 does not connect
-
RE: Record printing temperature and humidity
Gracias por tu ayuda. Me diste una pista de cual era el fallo y finalmente lo he podido solucionar. Era un error al indicar el número de sensor que quería.
Revisé el archivo config.g y lo configuré correctamente.Declaración de los sensores en config.g:
;DHT Sensor on Temperature Daughterboard SPI CS1 pin M308 S10 P"0.spi.cs1" Y"dht22" A"Temperatura" ; define DHT22 temperature sensor M308 S11 P"S10.1" Y"dht-humidity" A"Humedad [%]" ; Attach DHT22 humidity sensor to secondary output of temperature sensor
daemon.g:
if !exists(global.logTemps) global logTemps = false while global.logTemps ==true && job.file.fileName != null echo >>{"0:/sys/templog/templog.csv"} {sensors.analog[10].lastReading}^","^{sensors.analog[11].lastReading} G4 S30
Latest posts made by amimafe
-
RE: Manually updating resurrect.g without having to pause the print?
@Alva I'm sorry but I don't know how I can help you with your problem. If it helps you, I am working to create a macro that allows me to save the current line that is being executed from the gcode in a global variable and allows me to restart the layer if something goes wrong.
When I have it if you think it can be interesting I can share it with you.Best regards!
-
RE: Manually updating resurrect.g without having to pause the print?
@Alva for me, the power failure recovery (M916) works correctly, but what I would like is to be able to save the G60 position in the resurrect.g so I can continue printing from that point.
-
RE: Manually updating resurrect.g without having to pause the print?
@Phaedrux Pedí algunas tapas para ver si eso ayuda con el problema. Sin embargo, me gustaría poder guardar manualmente la posición también, en caso de que la pérdida de energía no funcione o algo que no sea un bajo voltaje haga que la placa se reinicie. ¿Quizás algo como G60? Pero no parece que la posición de restauración de G60 se guarde después de un reinicio.
I'm also interested in this. I've tested it with G60, as you said it's not suitable for that use.
Were you able to find out anything? -
RE: Read Gcode File backwards
I have been testing with the G60 command and have obtained good results.
Now I have the following problem:
With G60 I go back to a saved position and manage to go back, but when I run resume.g the printer returns to the coordinates where it paused and not at the G60 position.
I have checked both in the Gcode commands and in the Object model to see if there is any option to update the coordinates before executing resume.g but I have not found anything.Any ideas or suggestions on this?
Thanks
-
RE: G2/G3 arc slow down
Wow, it's certainly very interesting and I think it might be just what I needed. I will study it well and give an answer.
Thank you very much
-
RE: G2/G3 arc slow down
Hi @gloomyandy ,
The problem I see is that if I increase the jerk to improve the speed of the arcs, when the printer makes a corner it will make a very strong jerk.
Is there no way to make the printer perform a constant movement as if it were performing a straight line? -
G2/G3 arc slow down
Hi,
I am performing various tests and configurations on a clay printer. I have noticed that when I generate the gcode with the instructions G2/G3 it reduces the speed to half when I make the movement of an arc.
Do you know what could be the cause of this. I have checked the Gcode and I don't see any Fxxxx command before the arcs.
Do you know if it could be a config.g parameter or is it something in the firmware?Thank you.
-
RE: Read Gcode File backwards
Hi @marzubus
Thank you for your help.
I'm going to look into the G60 instruction to see if it can be of any help to me.Thanks again
-
RE: Read Gcode File backwards
Sorry @OwenD ,
Yes, I hadn't mentioned that. It is a clay printer. I'm going to check what you told me about the G60 and see if this could be solved, although I think it is not exactly the initial idea.
Gracias.
-
RE: Read Gcode File backwards
Hi @oliof ,
What I want is that if at some point the 3D printer stops extruding I can pause, go back to the gcode position where the failure occurred and continue printing.
The material I print with is not plastic and I need that the correction can be done quickly without the need to modify the gcode.
With industrial PLC it can be implemented more easily, but I would like to know if it could be done with duet or object language.Thank you.