TAP
TAP Wiring Diagram!
Notice
- Please be careful not to connect the tap to the servo port, it needs to be connected to the limit port!!!

TAP Configuration Tutorial
tip
- Since the tap uses the nozzle as the limit trigger, there is no XY offset
tip
- The only modifications for TAP are the Z limit and probe
[stepper_z]
endstop_pin: probe:z_virtual_endstop
# endstop_pin: ^sht36:PA1
# position_endstop: -0.5
[probe]
pin: ^sht36:PA1 # Signal interface
x_offset: 0 # X-axis - Sensor relative to nozzle offset
y_offset: 0 # Y-axis - Sensor relative to nozzle offset
#z_offset: 0 # Z-axis - Sensor relative to nozzle offset
speed: 3.0 # Leveling speed
lift_speed: 5 # Lift probe speed
samples: 3 # Number of samples
samples_result: median # Value selection method (default median - median)
sample_retract_dist: 3.0 # Leveling retraction distance
samples_tolerance: 0.075 # Sampling tolerance (note that too small a value may cause an increase in the number of samples)
samples_tolerance_retries: 3 # Tolerance retry count
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)) }
M106 S255
M109 S{ PROBE_TEMP }
M106 S26
{% else %}
# Temperature target is already low enough, but the 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 %}
Startup Macro Modification
- Effect

PrusaSlicer Startup Macro Modification
M109 S150
print_start
M109 S[first_layer_temperature]
CURA Startup Macro Modification
M109 S150
print_start
M109 S{material_print_temperature_layer_0} ;Start heating extruder
Orca-Slicer Startup Macro Modification
M190 S[bed_temperature_initial_layer_single]
M109 S150
print_start PRINT_MIN={first_layer_print_min[0]},{first_layer_print_min[1]} PRINT_MAX={first_layer_print_max[0]},{first_layer_print_max[1]}
M109 S[nozzle_temperature_initial_layer]