mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-11 16:57:55 -06:00
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>
This commit is contained in:
parent
03ddd64b93
commit
aa0f1aaeb2
3 changed files with 3 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue