diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-06 18:50:00 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-12 13:20:32 -0500 |
commit | d14a53e160c3edde54536574973ef5d0c9cafc7c (patch) | |
tree | d10cceb8d0a66e8cd7ca1e3fe2d1b28459834637 /klippy/extras/manual_probe.py | |
parent | 805e56008f822136031d28fa1c09c914cd98bfcf (diff) | |
download | kutter-d14a53e160c3edde54536574973ef5d0c9cafc7c.tar.gz kutter-d14a53e160c3edde54536574973ef5d0c9cafc7c.tar.xz kutter-d14a53e160c3edde54536574973ef5d0c9cafc7c.zip |
manual_probe: Add a helper script for performing manual Z probing
Add MANUAL_PROBE and Z_ENDSTOP_CALIBRATE commands.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/manual_probe.py')
-rw-r--r-- | klippy/extras/manual_probe.py | 163 |
1 files changed, 163 insertions, 0 deletions
diff --git a/klippy/extras/manual_probe.py b/klippy/extras/manual_probe.py new file mode 100644 index 00000000..a1fc63cf --- /dev/null +++ b/klippy/extras/manual_probe.py @@ -0,0 +1,163 @@ +# Helper script for manual z height probing +# +# Copyright (C) 2019 Kevin O'Connor <kevin@koconnor.net> +# +# This file may be distributed under the terms of the GNU GPLv3 license. +import logging, bisect +import homing + +class ManualProbe: + def __init__(self, config): + self.printer = config.get_printer() + # Register commands + self.gcode = self.printer.lookup_object('gcode') + self.gcode.register_command('MANUAL_PROBE', self.cmd_MANUAL_PROBE, + desc=self.cmd_MANUAL_PROBE_help) + self.z_position_endstop = None + if config.has_section('stepper_z'): + zconfig = config.getsection('stepper_z') + if zconfig.get_prefix_options('position_endstop'): + self.z_position_endstop = zconfig.getfloat('position_endstop') + self.gcode.register_command( + 'Z_ENDSTOP_CALIBRATE', self.cmd_Z_ENDSTOP_CALIBRATE, + desc=self.cmd_Z_ENDSTOP_CALIBRATE_help) + def manual_probe_finalize(self, kin_pos): + if kin_pos is not None: + self.gcode.respond_info("Z position is %.3f" % (kin_pos[2],)) + cmd_MANUAL_PROBE_help = "Start manual probe helper script" + def cmd_MANUAL_PROBE(self, params): + ManualProbeHelper(self.printer, params, self.manual_probe_finalize) + def z_endstop_finalize(self, kin_pos): + if kin_pos is None: + return + z_pos = self.z_position_endstop - kin_pos[2] + self.gcode.respond_info( + "stepper_z: position_endstop: %.3f\n" + "The SAVE_CONFIG command will update the printer config file\n" + "with the above and restart the printer." % (z_pos,)) + configfile = self.printer.lookup_object('configfile') + configfile.set('stepper_z', 'position_endstop', "%.3f" % (z_pos,)) + cmd_Z_ENDSTOP_CALIBRATE_help = "Calibrate a Z endstop" + def cmd_Z_ENDSTOP_CALIBRATE(self, params): + ManualProbeHelper(self.printer, params, self.z_endstop_finalize) + +Z_BOB_MINIMUM = 0.500 +BISECT_MAX = 0.200 + +# Helper script to determine a Z height +class ManualProbeHelper: + def __init__(self, printer, params, finalize_callback): + self.printer = printer + self.finalize_callback = finalize_callback + self.gcode = self.printer.lookup_object('gcode') + self.toolhead = self.printer.lookup_object('toolhead') + self.speed = self.gcode.get_float("SPEED", params, 5.) + self.past_positions = [] + self.last_toolhead_pos = self.last_kinematics_pos = None + # Register commands + try: + self.gcode.register_command('ACCEPT', self.cmd_ACCEPT, + desc=self.cmd_ACCEPT_help) + except self.gcode.error as e: + self.gcode.respond_error( + "Already in a manual Z probe. Use ABORT to abort it.") + self.finalize_callback(None) + return + self.gcode.register_command('NEXT', self.cmd_ACCEPT) + self.gcode.register_command('ABORT', self.cmd_ABORT, + desc=self.cmd_ABORT_help) + self.gcode.register_command('TESTZ', self.cmd_TESTZ, + desc=self.cmd_TESTZ_help) + self.gcode.respond_info( + "Starting manual Z probe. Use TESTZ to adjust position.\n" + "Finish with ACCEPT or ABORT command.") + self.report_z_status() + def get_kinematics_pos(self): + toolhead_pos = self.toolhead.get_position() + if toolhead_pos == self.last_toolhead_pos: + return self.last_kinematics_pos + self.toolhead.get_last_move_time() + kin_pos = self.toolhead.get_kinematics().calc_position() + self.last_toolhead_pos = toolhead_pos + self.last_kinematics_pos = kin_pos + return kin_pos + def move_z(self, z_pos): + curpos = self.toolhead.get_position() + try: + if curpos[2] - z_pos < Z_BOB_MINIMUM: + curpos[2] = z_pos + Z_BOB_MINIMUM + self.toolhead.move(curpos, self.speed) + curpos[2] = z_pos + self.toolhead.move(curpos, self.speed) + except homing.EndstopError as e: + self.finalize(False) + raise self.gcode.error(str(e)) + def report_z_status(self, warn_no_change=False, prev_pos=None): + # Get position + kin_pos = self.get_kinematics_pos() + z_pos = kin_pos[2] + if warn_no_change and z_pos == prev_pos: + self.gcode.respond_info( + "WARNING: No change in position (reached stepper resolution)") + # Find recent positions that were tested + pp = self.past_positions + next_pos = bisect.bisect_left(pp, z_pos) + prev_pos = next_pos - 1 + if next_pos < len(pp) and pp[next_pos] == z_pos: + next_pos += 1 + prev_str = next_str = "??????" + if prev_pos >= 0: + prev_str = "%.3f" % (pp[prev_pos],) + if next_pos < len(pp): + next_str = "%.3f" % (pp[next_pos],) + # Find recent positions + self.gcode.respond_info("Z position: %s --> %.3f <-- %s" % ( + prev_str, z_pos, next_str)) + cmd_ACCEPT_help = "Accept the current Z position" + def cmd_ACCEPT(self, params): + self.finalize(True) + cmd_ABORT_help = "Abort manual Z probing tool" + def cmd_ABORT(self, params): + self.finalize(False) + cmd_TESTZ_help = "Move to new Z height" + def cmd_TESTZ(self, params): + # Store current position for later reference + kin_pos = self.get_kinematics_pos() + z_pos = kin_pos[2] + pp = self.past_positions + insert_pos = bisect.bisect_left(pp, z_pos) + if insert_pos >= len(pp) or pp[insert_pos] != z_pos: + pp.insert(insert_pos, z_pos) + # Determine next position to move to + req = self.gcode.get_str("Z", params) + if req in ('+', '++'): + check_z = 9999999999999.9 + if insert_pos < len(self.past_positions) - 1: + check_z = self.past_positions[insert_pos + 1] + if req == '+': + check_z = (check_z + z_pos) / 2. + next_z_pos = min(check_z, z_pos + BISECT_MAX) + elif req in ('-', '--'): + check_z = -9999999999999.9 + if insert_pos > 0: + check_z = self.past_positions[insert_pos - 1] + if req == '-': + check_z = (check_z + z_pos) / 2. + next_z_pos = max(check_z, z_pos - BISECT_MAX) + else: + next_z_pos = z_pos + self.gcode.get_float("Z", params) + # Move to given position and report it + self.move_z(next_z_pos) + self.report_z_status(next_z_pos != z_pos, z_pos) + def finalize(self, success): + self.gcode.register_command('ACCEPT', None) + self.gcode.register_command('NEXT', None) + self.gcode.register_command('ABORT', None) + self.gcode.register_command('TESTZ', None) + kin_pos = None + if success: + kin_pos = self.get_kinematics_pos() + self.finalize_callback(kin_pos) + +def load_config(config): + return ManualProbe(config) |