TAP
TAP 연결 개요!
주의사항
- TAP을 서보 포트에 연결하지 말고 리미트 스위치 포트에 연결해야 합니다!!!
Loading...
TAP 설정 가이드
팁
- TAP은 노즐 자체를 리미트 트리거로 사용하므로 XY 오프셋이 전혀 없습니다.
팁
- TAP에서 수정해야 할 부분은 Z 리미트와 프로브뿐입니다.
[stepper_z]
endstop_pin: probe:z_virtual_endstop
# endstop_pin: ^sht36:PA1
# position_endstop: -0.5
[probe]
pin: ^sht36:PC15 # 신호 인터페이스
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('익스투르더 온도 목표 %.1fC가 너무 높아 %.1fC로 낮춥니다.' % (TARGET_TEMP, PROBE_TEMP)) }
M106 S255
M109 S{ PROBE_TEMP }
M106 S26
{% else %}
# 온도 목표는 이미 충분히 낮지만, 노즐이 여전히 너무 뜨거울 수 있습니다.
{% if ACTUAL_TEMP > MAX_TEMP %}
{ action_respond_info('익스투르더 온도 %.1fC가 여전히 너무 높아 %.1fC 이하로 내려갈 때까지 기다립니다.' % (ACTUAL_TEMP, MAX_TEMP)) }
TEMPERATURE_WAIT SENSOR=extruder MAXIMUM={ MAX_TEMP }
{% endif %}
{% endif %}
시작 매크로 수정
- 효과
Loading...
PrusaSlicer 시작 매크로 수정
M109 S150
print_start
M109 S[first_layer_temperature]
CURA 시작 매크로 수정
M109 S150
print_start
M109 S{material_print_temperature_layer_0} ;익스투르더 가열 시작
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]
Loading...