Repetier won't wait for bed to cool down?
Hi,
According to Gcode Marlin Docs if I need the printer to wait when bed cooling I use the code "M190 R40". This tells it to wait until the bed temperature has reached 40C before continuing any other code. But Repetier just skips this line and does not wait. Do you know why that is?
According to Gcode Marlin Docs if I need the printer to wait when bed cooling I use the code "M190 R40". This tells it to wait until the bed temperature has reached 40C before continuing any other code. But Repetier just skips this line and does not wait. Do you know why that is?
Comments
Make sure each line is closed by a return and it should get send.
M109 [B<temp>] [F<flag>] [R<temp>] [S<temp>] [T<index>]
Parameters
[B<temp>]
With
AUTOTEMP
, the max auto-temperature.[F<flag>]
Autotemp flag. Omit to disable autotemp.
[R<temp>]
Target temperature (wait for cooling or heating).
[S<temp>]
Target temperature (wait only when heating). Also
AUTOTEMP
: The min auto-temperature.[T<index>]
Hotend index. If omitted, the currently active hotend will be used.
would wait for 50°C. At that there is no risk disabling extruders normally. After that add
M104 S0
to disable it completely.
Problem is it will still heat and start swinging around 50°C.
Alternatively do
M104 S0
G4 S300 ; Wait 5 minutes for cooldown
Adjust delay to time your extruder needs for cooling down.