diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-09-18 16:00:13 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-09-18 16:01:07 -0400 |
commit | 174754299a88c2fa2207b867aa2c2c653eb7a9e0 (patch) | |
tree | 2a9f180724c1c420d4ce002e47ac2583d8f1738f /klippy/extras | |
parent | 7b6a44e8f93fd6068facc0c4870d1e350eb82218 (diff) | |
download | kutter-174754299a88c2fa2207b867aa2c2c653eb7a9e0.tar.gz kutter-174754299a88c2fa2207b867aa2c2c653eb7a9e0.tar.xz kutter-174754299a88c2fa2207b867aa2c2c653eb7a9e0.zip |
heater: Add new TURN_OFF_HEATERS command
Add a command that will turn off all heaters in the printer. Run this
command in the default idle_timeout action.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras')
-rw-r--r-- | klippy/extras/idle_timeout.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/extras/idle_timeout.py b/klippy/extras/idle_timeout.py index ac91cbcf..7ead83e2 100644 --- a/klippy/extras/idle_timeout.py +++ b/klippy/extras/idle_timeout.py @@ -5,6 +5,7 @@ # This file may be distributed under the terms of the GNU GPLv3 license. DEFAULT_IDLE_GCODE = """ +TURN_OFF_HEATERS M84 """ |