mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-03-15 23:35:29 -06:00
probe_eddy_current: fix - actually apply tap_z_offset
Some checks failed
Build test / build (push) Has been cancelled
Some checks failed
Build test / build (push) Has been cancelled
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
addc5940e8
commit
ff4e91380a
1 changed files with 2 additions and 1 deletions
|
|
@ -640,7 +640,8 @@ class EddyTap:
|
|||
while trig_idx > 0 and data[trig_idx-1][1][2] > z_contact:
|
||||
trig_idx -= 1
|
||||
trig_pos = data[trig_idx][1]
|
||||
return manual_probe.ProbeResult(trig_pos[0], trig_pos[1], z_contact,
|
||||
adj_z_contact = z_contact - self._tap_z_offset
|
||||
return manual_probe.ProbeResult(trig_pos[0], trig_pos[1], adj_z_contact,
|
||||
trig_pos[0], trig_pos[1], trig_pos[2])
|
||||
# Probe session interface
|
||||
def start_probe_session(self, gcmd):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue