제품 소개
FilGuard Filament Detector는 VZ-Hextrudort-Low 압출기와 호환되며, 필라멘트 부족 감지, 막힘 감지 기능 및 사용자 정의 가능한 버튼을 제공합니다.
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
배선 튜토리얼
- 온보드 PH2.0 5P 단자로 배선이 더욱 편리합니다.
Loading...
펌웨어 LED 상태 소개
- 필라멘트 부족: 빨간색 점멸
- 필라멘트 공급: 파란색 점멸 (공급 속도가 빠를수록 점멸 빈도 증가)
- 필라멘트 회수: 녹색 점멸 (위와 동일)
- 필라멘트 있지만 공급/회수 없음: 주황색 호흡등
Klipper, 필라멘트 부족 및 막힘 참조 설정
주의
막힘 감지 설정 중 detection_length: 2.0
2.0mm는 이 스마트 필라멘트 감지 모듈이 정상 작동하는 데 필요한 최소 감지 길이입니다. 오작동 문제가 발생하면 감지 길이를 1mm씩 늘려 문제가 해결될 때까지 조정하세요.
[respond]
default_type: echo
[force_move]
enable_force_move: True
[filament_switch_sensor 필라멘트 부족 감지]
pause_on_runout: False
switch_pin: ^!PG12
runout_gcode:
M118 필라멘트 부족
# filament_unload
insert_gcode:
M118 필라멘트 공급
FORCE_MOVE STEPPER=extruder DISTANCE=8 VELOCITY=5 ACCEL=60
{% if (printer.extruder.can_extrude|lower != 'true') or (printer.extruder.target == 0)%}
M118 가열 대기 중!
SET_HEATER_TEMPERATURE HEATER=extruder TARGET=200
TEMPERATURE_WAIT SENSOR=extruder MINIMUM=190
{% endif %}
M83
G92 E0
G0 E50 F500
G0 E10 F200
[filament_motion_sensor 막힘 감지]
extruder: extruder
detection_length: 2.0
switch_pin: ^!PG10
pause_on_runout: False
runout_gcode:
M118 막힘 발생
insert_gcode:
M118 막힘 복구
#event_delay:
#pause_delay:
정보
필라멘트 공급과 회수는 하나만 사용할 수 있습니다.
Klipper 필라멘트 회수 버튼 참조 설정
[gcode_button filament_unload]
pin: ^!PG11
release_gcode:
filament_unload
press_gcode:
[gcode_macro filament_unload]
gcode:
{% if (printer.print_stats.state != "printing") %}
M83
G92 E0
{% if (printer.extruder.can_extrude|lower != 'true') or (printer.extruder.target == 0)%}
M118 가열 대기 중!
SET_HEATER_TEMPERATURE HEATER=extruder TARGET=190
TEMPERATURE_WAIT SENSOR=extruder MINIMUM=185
{% endif %}
G0 E10 F300
G0 E-20 F200
G0 E-50 F500
{% else %}
M118 인쇄 중, 리트랙션 작업이 실행되지 않습니다!
{% endif %}
Klipper 필라멘트 공급 버튼 참조 설정
[gcode_button filament_unload]
pin: ^!PG11
release_gcode:
filament_unload
press_gcode:
[gcode_macro filament_unload]
gcode:
{% if (printer.print_stats.state != "printing") %}
M83
G92 E0
{% if (printer.extruder.can_extrude|lower != 'true') or (printer.extruder.target == 0)%}
M118 가열 대기 중!
SET_HEATER_TEMPERATURE HEATER=extruder TARGET=190
TEMPERATURE_WAIT SENSOR=extruder MINIMUM=185
{% endif %}
G0 E20 F300
{% else %}
M118 인쇄 중, 리트랙션 작업이 실행되지 않습니다!
{% endif %}
3D 모델
- 아래 클라우드 링크를 클릭하세요.
-
Loading...
Loading...