aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/toolhead.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-02-08 20:11:05 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-02-12 13:38:13 -0500
commit2d7c3a84eefdb584e977747d0b8d84304571b50f (patch)
treeb2696ad66a5fed6160baa3ecff82797c2eeb181e /klippy/toolhead.py
parent57e6acbc5c0d479786e924d588b51b3bb34da92a (diff)
downloadkutter-2d7c3a84eefdb584e977747d0b8d84304571b50f.tar.gz
kutter-2d7c3a84eefdb584e977747d0b8d84304571b50f.tar.xz
kutter-2d7c3a84eefdb584e977747d0b8d84304571b50f.zip
manual_stepper: Add an "extras" module for manually controlling a stepper
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/toolhead.py')
-rw-r--r--klippy/toolhead.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py
index 9c7369e8..32bda0fc 100644
--- a/klippy/toolhead.py
+++ b/klippy/toolhead.py
@@ -372,6 +372,7 @@ class ToolHead:
self.kin.motor_off(last_move_time)
for ext in kinematics.extruder.get_printer_extruders(self.printer):
ext.motor_off(last_move_time)
+ self.printer.send_event("toolhead:motor_off", last_move_time)
self.dwell(STALL_TIME)
logging.debug('; Max time of %f', last_move_time)
def wait_moves(self):