There are a few changes you'll need to make in order to get Tap working properly.
-
Update your Z endstop:
-
Under the
[stepper_z]block, you'll want to comment out yourposition_endstopand change yourendstop_pinso that it uses the virtual Z endstop for Tap.- Example:
endstop_pin: probe:z_virtual_endstop
- Example:
-
Be sure to also remove any automatically saved
[stepper_z] position_endstop: ...value that may be found at the bottom of yourprinter.cfgfile.
-
-
Update your Z homing position:
- If you use
[safe_z_home], change the location to the center of the bed. If you have a[homing_override]make sure that it moves the toolhead to the center of the bed before callingG28 Z.
- If you use
-
Update your probe's offsets:
- Remember, with Tap, your nozzle IS the probe, so your
[probe] x_offsetand[probe] y_offsetvalues should be 0 now. You'll need to manually calibrate the probe's Z offset by usingPROBE_CALIBRATE.
- Remember, with Tap, your nozzle IS the probe, so your
-
Add Tap's
activate_gcode:- This G-code will allow you to probe cold, but will also prevent you from probing with a nozzle at printing temperature (to try to preserve your build surface). This goes in the
[probe]section of your config.
- This G-code will allow you to probe cold, but will also prevent you from probing with a nozzle at printing temperature (to try to preserve your build surface). This goes in the
activate_gcode:
{% set PROBE_TEMP = 150 %}
{% set MAX_TEMP = PROBE_TEMP + 5 %}
{% set ACTUAL_TEMP = printer.extruder.temperature %}
{% set TARGET_TEMP = printer.extruder.target %}
{% if TARGET_TEMP > PROBE_TEMP %}
{ action_respond_info('Extruder temperature target of %.1fC is too high, lowering to %.1fC' % (TARGET_TEMP, PROBE_TEMP)) }
M109 S{ PROBE_TEMP }
{% else %}
# Temperature target is already low enough, but nozzle may still be too hot.
{% if ACTUAL_TEMP > MAX_TEMP %}
{ action_respond_info('Extruder temperature %.1fC is still too high, waiting until below %.1fC' % (ACTUAL_TEMP, MAX_TEMP)) }
TEMPERATURE_WAIT SENSOR=extruder MAXIMUM={ MAX_TEMP }
{% endif %}
{% endif %}