From 55d7ed1aa9b59ce2cb5b0d23df67cf27cf25835f Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 6 Apr 2026 20:00:20 -0400 Subject: [PATCH] probe_eddy_current: Increase "tap" calculation precision to 50nm Continue to run least squares evaluations until the uncertainty range is within 50 nanometers (reduced from 250nm). Signed-off-by: Kevin O'Connor --- klippy/extras/probe_eddy_current.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klippy/extras/probe_eddy_current.py b/klippy/extras/probe_eddy_current.py index c2da66dd7..dc81720cf 100644 --- a/klippy/extras/probe_eddy_current.py +++ b/klippy/extras/probe_eddy_current.py @@ -666,7 +666,7 @@ class EddyTap: max_z = samples[-1][0] best_err = sys.float_info.max best_coeffs = [0., 0., 0., 0.] - while max_z - min_z > 0.000250: + while max_z - min_z > 0.000050: # Select z value to check mid_z = (min_z + max_z) * .5 if best_z < mid_z: