diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-07-12 19:07:54 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-07-16 10:32:48 -0400 |
commit | acefe26e0fa725b40c09f51d652289e5ff203656 (patch) | |
tree | bffb32c31b8d17512bb8cb2ebea975ffc162edaa /config/example-extras.cfg | |
parent | 0025fbf10d81555b0c417941d70650d7c625045c (diff) | |
download | kutter-acefe26e0fa725b40c09f51d652289e5ff203656.tar.gz kutter-acefe26e0fa725b40c09f51d652289e5ff203656.tar.xz kutter-acefe26e0fa725b40c09f51d652289e5ff203656.zip |
idle_timeout: Move timeout handling from toolhead.py to new extras module
Move the "motor_off_timeout" tracking to a new module in the extras/
directory. This makes it easier to customize the idle timeout
behavior.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r-- | config/example-extras.cfg | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 84d8a05a..e6c0adae 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -165,6 +165,17 @@ # default is 120. +# Idle timeout. An idle timeout is automatically enabled - add an +# explicit idle_timeout config section to change the default settings. +#[idle_timeout] +#gcode: +# A list of G-Code commands (one per line) to execute on an idle +# timeout. The default is to run "M84". +#timeout: 600 +# Idle time (in seconds) to wait before running the above G-Code +# commands. The default is 600 seconds. + + # Multi-stepper axes. On a cartesian style printer, the stepper # controlling a given axis may have additional config blocks defining # steppers that should be stepped in concert with the primary |