aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/probe.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2024-05-31 16:48:55 -0400
committerKevin O'Connor <kevin@koconnor.net>2024-06-14 13:38:07 -0400
commitfcf064ba6851042a12a71975c229a9670b34cf31 (patch)
treecf5a55bb92027452dfcfa1007a950371d50c21d1 /klippy/extras/probe.py
parentaa0dbf6ee652fe87b4fcc828482309c6830f0efb (diff)
downloadkutter-fcf064ba6851042a12a71975c229a9670b34cf31.tar.gz
kutter-fcf064ba6851042a12a71975c229a9670b34cf31.tar.xz
kutter-fcf064ba6851042a12a71975c229a9670b34cf31.zip
probe_eddy_current: Add support for probing in "scan" mode
When probing in "scan" mode, the toolhead will pause at each position, but does not descend. This can notably reduce the total probing time. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/probe.py')
-rw-r--r--klippy/extras/probe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/probe.py b/klippy/extras/probe.py
index 6a69d1b5..88aed25f 100644
--- a/klippy/extras/probe.py
+++ b/klippy/extras/probe.py
@@ -438,7 +438,7 @@ class ProbePointsHelper:
def_move_z = self.default_horizontal_move_z
self.horizontal_move_z = gcmd.get_float('HORIZONTAL_MOVE_Z',
def_move_z)
- if probe is None or method != 'automatic':
+ if probe is None or method == 'manual':
# Manual probe
self.lift_speed = self.speed
self.probe_offsets = (0., 0., 0.)