aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/bltouch.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2021-03-29 14:23:46 -0400
committerKevin O'Connor <kevin@koconnor.net>2021-03-29 21:20:57 -0400
commit58a0eb76c5c3bbd24fec1aee8e6edd334702afd1 (patch)
tree99f221d354ef85d1123266092b81ebce77fcee5d /klippy/extras/bltouch.py
parent37a263c0b94fd77197a8c053ce08e4f6e8c17407 (diff)
downloadkutter-58a0eb76c5c3bbd24fec1aee8e6edd334702afd1.tar.gz
kutter-58a0eb76c5c3bbd24fec1aee8e6edd334702afd1.tar.xz
kutter-58a0eb76c5c3bbd24fec1aee8e6edd334702afd1.zip
homing: Pass the HomingMove class to homing_move_begin/end events
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/bltouch.py')
-rw-r--r--klippy/extras/bltouch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/bltouch.py b/klippy/extras/bltouch.py
index c8deee4b..6646433d 100644
--- a/klippy/extras/bltouch.py
+++ b/klippy/extras/bltouch.py
@@ -177,7 +177,7 @@ class BLTouchEndstopWrapper:
self.raise_probe()
self.sync_print_time()
self.multi = 'OFF'
- def probe_prepare(self):
+ def probe_prepare(self, hmove):
if self.multi == 'OFF' or self.multi == 'FIRST':
self.lower_probe()
if self.multi == 'FIRST':
@@ -187,7 +187,7 @@ class BLTouchEndstopWrapper:
toolhead.flush_step_generation()
self.start_mcu_pos = [(s, s.get_mcu_position())
for s in self.mcu_endstop.get_steppers()]
- def probe_finish(self):
+ def probe_finish(self, hmove):
if self.multi == 'OFF':
self.raise_probe()
self.sync_print_time()