aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/bltouch.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2020-02-12 13:37:55 -0500
committerKevinOConnor <kevin@koconnor.net>2020-02-15 17:52:44 -0500
commit1dd952ac65e7cb6010f0e698c820e0538d7c3818 (patch)
tree8e8d088f15f05751e8a445f8e225a9138bb68112 /klippy/extras/bltouch.py
parent5bca4e6fa17c0aac325960575fc0901fc60c6da0 (diff)
downloadkutter-1dd952ac65e7cb6010f0e698c820e0538d7c3818.tar.gz
kutter-1dd952ac65e7cb6010f0e698c820e0538d7c3818.tar.xz
kutter-1dd952ac65e7cb6010f0e698c820e0538d7c3818.zip
probe: Add multi_probe_begin() / multi_probe_end() callbacks
Add support for notifying the low-level probing handlers that a multiple probe sequence is occurring. This is in preparation for the bltouch code. 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, 4 insertions, 0 deletions
diff --git a/klippy/extras/bltouch.py b/klippy/extras/bltouch.py
index 47714709..f423d348 100644
--- a/klippy/extras/bltouch.py
+++ b/klippy/extras/bltouch.py
@@ -137,6 +137,10 @@ class BLTouchEndstopWrapper:
# Test was successful
self.next_test_time = check_end_time + TEST_TIME
self.sync_print_time()
+ def multi_probe_begin(self):
+ pass
+ def multi_probe_end(self):
+ pass
def probe_prepare(self):
self.test_sensor()
self.sync_print_time()