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: 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.
-
Read Gcode File backwards
Hi,
I want to make a macro for Duet2 that allows me to read the lines of a gcode file in reverse.
I have seen that with the M110 command you can know and establish the gcode line, but I don't know how I could implement it.
Any idea how I could do it?Thank you!
-
RE: Layer change detection job.layer
The slicers we use add a comment on the layer changes that DUET2 recognizes.
-
RE: Layer change detection job.layer
Hi @dc42 ,
I read the postRe: Job.Layer not working anymore with 3.3rc2 and wanted to do something similar. Execute a command at each layer change. Entering the layer change comment with the laminator would not be a problem.
Is there still an option? I tried to do it with creating a variable and assigning it the job.layer value to compare with its current values but it doesn't work.
The idea was to make everything more compact with the duet firmware.Thanks again
-
RE: Layer change detection job.layer
Hi @fcwilt ,
Yes, that's the other option I had thought of, but I preferred to do it by daemon.g and if a third party manages the machine, everything is integrated with the firmware.
Thank you.