TAP
TAP接线示意图!
注意事項
- 請注意不要將tap接到舵機口,需要接到限位口!!!

TAP的配置教程
ヒント
- 因為tap是直接使用噴嘴當限位觸發所以無任何XY偏移
ヒント
- TAP修改的地方只有z限位與probe
[stepper_z]
endstop_pin: probe:z_virtual_endstop
# endstop_pin: ^sht36:PA1
# position_endstop: -0.5
[probe]
pin: ^sht36:PA1 # 信號接口
x_offset: 0 # X軸-傳感器相對噴嘴偏移量
y_offset: 0 # Y軸-傳感器相對噴嘴偏移量
#z_offset: 0 # Z軸-傳感器相對噴嘴偏移量
speed: 3.0 # 調平速度
lift_speed: 5 # 抬起探頭速度
samples: 3 # 采樣次數
samples_result: median # 取值方式(默認median-中位數)
sample_retract_dist: 3.0 # 調平回縮距離
samples_tolerance: 0.075 # 采樣公差(注意過小的值可能造成采樣次數增加)
samples_tolerance_retries: 3 # 超公差重試次數
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 %}
啓始宏修改
- 效果

PrusaSlicer啟始宏修改
M109 S150
print_start
M109 S[first_layer_temperature]
CURA啟始宏修改
M109 S150
print_start
M109 S{material_print_temperature_layer_0} ;Start heating extruder
Orca-Slicer啟始宏修改
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]