diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2024-05-31 16:48:55 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-06-14 13:38:07 -0400 |
commit | fcf064ba6851042a12a71975c229a9670b34cf31 (patch) | |
tree | cf5a55bb92027452dfcfa1007a950371d50c21d1 /klippy/extras/probe.py | |
parent | aa0dbf6ee652fe87b4fcc828482309c6830f0efb (diff) | |
download | kutter-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.py | 2 |
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.) |