diff options
Diffstat (limited to 'klippy/extras/delta_calibrate.py')
-rw-r--r-- | klippy/extras/delta_calibrate.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/extras/delta_calibrate.py b/klippy/extras/delta_calibrate.py index 429779aa..cc74c0b8 100644 --- a/klippy/extras/delta_calibrate.py +++ b/klippy/extras/delta_calibrate.py @@ -143,6 +143,7 @@ class DeltaCalibrate: points.append((math.cos(r) * dist, math.sin(r) * dist)) self.probe_helper = probe.ProbePointsHelper( config, self.probe_finalize, default_points=points) + self.probe_helper.minimum_points(3) # Restore probe stable positions self.last_probe_positions = [] for i in range(999): |