problem stop printing
-
@tom33 Please share the macro files you invoke from daemon.g. Is your daemon.g truncated or why is there an "else" statement a the end? Does the problem persist if you disable daemon.g, e.g. by renaming it to daemon-disabled.g?
-
@chrishamm
moteur.gwhile sensors.gpIn[9].value=0 M291 S2 R"warning" P"Défaut Moteur / Reset nécessaire" M150 R255 U0 B0 S60 F0 Y31
ATU
while sensors.gpIn[0].value=1 M150 R255 U0 B0 S120 F0 Y31 M112 M291 S2 R"warning" P"ATU enfoncé / Armement nécessaire"
led.g
if !move.axes[0].homed || !move.axes[1].homed || !move.axes[2].homed M150 R0 U0 B255 S17 F1 M150 R255 U255 B255 S7 F1 M150 R255 U0 B0 S7 F1 M150 R255 U0 B0 S89 F0 elif state.status = "halted" M150 R255 U0 B255 S120 F0 elif state.status = "idle" ; state.status = "idle" if sensors.gpIn[5].value=1 M150 R0 U0 B255 S17 F1 M150 R255 U255 B255 S7 F1 M150 R255 U0 B0 S7 F1 M150 R255 U100 B0 S89 F0 else M150 R0 U0 B255 S17 F1 M150 R255 U255 B255 S7 F1 M150 R255 U0 B0 S7 F1 M150 R0 U255 B0 S89 F0 elif state.status = "paused" M150 R0 U0 B255 S17 F1 M150 R255 U255 B255 S7 F1 M150 R255 U0 B0 S7 F1 M150 R250 U250 B25 S89 F0 elif state.status = "processing" M98 P/macros/Machine/Led/02_Job.g else state.status = "busy" M150 R0 U0 B255 S17 F1 M150 R255 U255 B255 S7 F1 M150 R255 U0 B0 S7 F1 M150 R255 U255 B255 S89 F0
-
I tryed to rename the daeamon file and remove the else but nothing change.
-
Does Pause and Cancel in the DWC work?
-
The pause / resume work but not the Stop.
I try to remove the stop.g, resume.g pause.g and also the resurrect & resurrect.prologue but nothing change...
-
I noticed something at the end of a job the printer do not execute the stop.g
-
@tom33 stop.g won't be ran unless you have M0 at the end of your job file
-
@jay_s_uk @chrishamm @Phaedrux
Hi,I found the problem. The problem occurs when my V & W axis are not home.
Like I use M584 P3 to hide them there is a way to avoid this ?
-
What exactly are your V and W axis? Are they axis which could be forced homed with G92?
-
I have two axis on the Y and Z, I use them to offset the position and make sure all my axis are perprendicular
-