[Marlin] M109 - Wait for Hotend Temperature
📅Update: 2020/09/18
- With
PRINTJOB_TIMER_AUTOSTART
this command will start the print job if heating, and stop the print job timer if the temperature is set at or below half ofEXTRUDE_MINTEMP
.
M109
[B<temp>]
[F<flag>]
[I<index>]
[R<temp>]
[S<temp>]
[T<index>]
[B<temp>]
WithAUTOTEMP
, the max auto-temperature.[F<flag>]
Autotemp flag. Omit to disable autotemp.[I<index>]
Material preset index. OverridesS
.[R<temp>]
Target temperature (wait for cooling or heating).[S<temp>]
Target temperature (wait only when heating). AlsoAUTOTEMP
: The min auto-temperature.[T<index>]
Hotend index. If omitted, the currently active hotend will be used.
Set target temperature and wait (if heating up)
M109 S180
Set target temperature, wait even if cooling
M109 R120
Set target temperature for E1 and wait (if heating up)
M109 T1 R205
AUTOTEMP
: Set autotemp range, wait for tempM109 F S180 B190
'
AUTOTEMP
: Disable autotemp, wait for temp'M109
Last modified 2yr ago