diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-03-30 14:07:45 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-03-30 14:09:17 -0400 |
commit | aa0f1aaeb2292dd021f62b7ac9ab8e4a936918d4 (patch) | |
tree | 47460f7b4c7b80e8aea312c84253b9159677490f /klippy | |
parent | 03ddd64b935e4d67760f049446ace109ce207987 (diff) | |
download | kutter-aa0f1aaeb2292dd021f62b7ac9ab8e4a936918d4.tar.gz kutter-aa0f1aaeb2292dd021f62b7ac9ab8e4a936918d4.tar.xz kutter-aa0f1aaeb2292dd021f62b7ac9ab8e4a936918d4.zip |
toolhead: Increase the motor_off_time default to 10 minutes
Increase the default motor_off_time from 1 minute to 10 minutes. The
small value is a common source of confusion.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/toolhead.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py index 95aceafa..ca7deebc 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -207,7 +207,7 @@ class ToolHead: self.flush_timer = self.reactor.register_timer(self._flush_handler) self.move_queue.set_flush_time(self.buffer_time_high) # Motor off tracking - self.motor_off_time = config.getfloat('motor_off_time', 60.000) + self.motor_off_time = config.getfloat('motor_off_time', 600.000) self.motor_off_timer = self.reactor.register_timer( self._motor_off_handler) # Determine the maximum velocity a cartesian axis could have |