TAP
TAP Wiring Diagram!
Note
- Please note that the tap should not be connected to the servo port and must be connected to the limit port!!
TAP Configuration Tutorial
tip
- Because the tap uses the nozzle directly as a limit trigger, there is no XY offset.
tip
- The only modifications for TAP are 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 offset relative to nozzle
y_offset: 0 # Y-axis - sensor offset relative to nozzle
#z_offset: 0 # Z-axis - sensor offset relative to nozzle
speed: 3.0 # Leveling speed
lift_speed: 5 # Probe lift speed
samples: 3 # Number of samples
samples_result: median # Sample result method (default median - median value)
sample_retract_dist: 3.0 # Retract distance during leveling
samples_tolerance: 0.075 # Sample tolerance (note that very small values may increase the number of samples)
samples_tolerance_retries: 3 # Retry count for exceeding tolerance
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 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 %}
Initialization Macro Modification
- Effect
PrusaSlicer Initialization Macro Modification
M109 S150
print_start
M109 S[first_layer_temperature]
CURA Initialization Macro Modification
M109 S150
print_start
M109 S{material_print_temperature_layer_0} ;Start heating extruder
Orca-Slicer Initialization 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]