Skip to main content

TAP

TAP Wiring Diagram

Notes
  • Please note that the TAP should not be connected to the servo port; it must be connected to the limit switch port!!!
Loading...

TAP Configuration Tutorial

Tip
  • Since the TAP uses the nozzle directly as the limit trigger, there is no XY offset.
Tip
  • Only the Z limit and probe settings need to be modified for the TAP.

[stepper_z]
endstop_pin: probe:z_virtual_endstop
# endstop_pin: ^sht36:PA1
# position_endstop: -0.5

[probe]
pin: ^sht36:PC15 # 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 # Probing speed
lift_speed: 5 # Probe lift speed
samples: 3 # Number of samples
samples_result: median # Sampling method (default: median)
sample_retract_dist: 3.0 # Retract distance between samples
samples_tolerance: 0.075 # Sample tolerance (note: too small a value may increase sample count)
samples_tolerance_retries: 3 # Number of retries if tolerance is exceeded
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 %}

Start G-code Modification

  • Effect
Loading...

PrusaSlicer Start G-code Modification

M109 S150
print_start
M109 S[first_layer_temperature]

CURA Start G-code Modification

M109 S150
print_start
M109 S{material_print_temperature_layer_0} ;Start heating extruder

Orca-Slicer Start G-code 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]
Loading...