일시 중지 및 인쇄 취소 사용자 정의 위치
printer.cfg에[include mainsail.cfg]또는[include fluidd.cfg]를 추가해야 합니다. 그렇지 않으면 적용되지 않습니다.- 아래 매크로를
printer.cfg에 추가하세요.
주의사항
False는 활성화되지 않음을 의미합니다!- 구성 파일의
gcode:는 반드시 유지되어야 하며 삭제할 수 없습니다.
한국어 번역
[gcode_macro _CLIENT_VARIABLE]
### 일시 중지 매크로 관련 사용자 정의 설정
variable_use_custom_pos : False ; x, y 사용자 정의 주차 좌표 사용 여부 [True/False]
variable_custom_park_x : 0.0 ; 인쇄 일시 중지 시 X 위치
variable_custom_park_y : 0.0 ; 인쇄 일시 중지 시 Y 위치
variable_custom_park_dz : 2.0 ; 인쇄 일시 중지 시 Z 상승 거리 (단위: 밀리미터)
### 인쇄 취소 매크로 관련 사용자 정의 설정
variable_park_at_cancel : False ; 인쇄 취소 매크로 실행 시 툴헤드를 주차 위치로 이동 허용 여부 [True/False]
variable_park_at_cancel_x : None ; 인쇄 취소 후 X 위치
variable_park_at_cancel_y : None ; 인쇄 취소 후 Y 위치
### 일시 중지 및 취소 시 압출기 동작
variable_retract : 1.0 ; 인쇄 일시 중지 시 압출기 리트랙션 길이(mm)
variable_cancel_retract : 5.0 ; 인쇄 취소 시 압출기 리트랙션 길이(mm)
variable_speed_retract : 35.0 ; 압출기 리트랙션 속도 mm/s
variable_unretract : 1.0 ; 인쇄 재개 시 압출 길이
variable_speed_unretract : 35.0 ; 압출기 압출 속도 mm/s
variable_speed_hop : 15.0 ; Z축 이동 속도 mm/s
variable_speed_move : 100.0 ; 이동 속도 mm/s
### 모터 가열 끄기 구성
### 하루는 86400초입니다.
variable_idle_timeout : 86400 ; 유휴 시간 초과 후 시작까지 필요한 초 수. 0으로 설정하면 값이 설정되거나 복원되지 않습니다.
# !!!주의 use_fw_retract: True로 설정한 경우, printer.cfg에 [firmware_retraction]이 반드시 정의되어야 합니다!!!
variable_use_fw_retract : False ; 펌웨어 리트랙션 사용 여부, 수동 버전 대신 사용 [True/False]
variable_runout_sensor : "" ; 센서가 정의된 경우, 필라멘트가 감지되지 않을 때 RESUME 실행을 취소하는 데 사용됩니다.
# 런아웃 센서의 구성 이름을 지정하세요, 예: "filament_switch_sensor runout". 힌트: printer.cfg에서 사용한 것과 동일하게 사용하세요.
# !!!사용자 정의 매크로, 주의해서 사용하고 해당 매크로 섹션을 검토하세요. 이 매크로들은 상태 LED 설정과 같은 간단한 작업을 위한 것입니다. 기본 매크로 기능을 방해하지 않도록 주의하세요. 단일 라인 명령만 지원되며, 여러 명령이 필요한 경우 매크로를 생성하세요.
variable_user_pause_macro : "" ; "" 안의 모든 내용은 klipper 기본 일시 중지 (PAUSE_BASE) 함수 이후에 실행됩니다.
variable_user_resume_macro: "" ; "" 안의 모든 내용은 klipper 기본 재개 (RESUME_BASE) 함수 이전에 실행됩니다.
variable_user_cancel_macro: "" ; "" 안의 모든 내용은 klipper 기본 취소 (인쇄 취소 매크로_BASE) 함수 이전에 실행됩니다.
gcode:
영어(원본)
[gcode_macro _CLIENT_VARIABLE]
variable_use_custom_pos : False ; use custom park coordinates for x,y [True/False]
variable_custom_park_x : 0.0 ; custom x position; value must be within your defined min and max of X
variable_custom_park_y : 0.0 ; custom y position; value must be within your defined min and max of Y
variable_custom_park_dz : 2.0 ; custom dz value; the value in mm to lift the nozzle when move to park position
variable_retract : 1.0 ; the value to retract while PAUSE
variable_cancel_retract : 5.0 ; the value to retract while CANCEL_PRINT
variable_speed_retract : 35.0 ; retract speed in mm/s
variable_unretract : 1.0 ; the value to unretract while RESUME
variable_speed_unretract : 35.0 ; unretract speed in mm/s
variable_speed_hop : 15.0 ; z move speed in mm/s
variable_speed_move : 100.0 ; move speed in mm/s
variable_park_at_cancel : False ; allow to move the toolhead to park while execute CANCEL_PRINT [True/False]
variable_park_at_cancel_x : None ; different park position during CANCEL_PRINT [None/Position as Float]; park_at_cancel must be True
variable_park_at_cancel_y : None ; different park position during CANCEL_PRINT [None/Position as Float]; park_at_cancel must be True
# !!! Caution [firmware_retraction] must be defined in the printer.cfg if you set use_fw_retract: True !!!
variable_use_fw_retract : False ; use fw_retraction instead of the manual version [True/False]
variable_idle_timeout : 0 ; time in sec until idle_timeout kicks in. Value 0 means that no value will be set or restored
variable_runout_sensor : "" ; If a sensor is defined, it will be used to cancel the execution of RESUME in case no filament is detected.
# Specify the config name of the runout sensor e.g "filament_switch_sensor runout". Hint use the same as in your printer.cfg
# !!! Custom macros, please use with care and review the section of the corresponding macro.
# These macros are for simple operations like setting a status LED. Please make sure your macro does not interfere with the basic macro functions.
# Only single line commands are supported, please create a macro if you need more than one command.
variable_user_pause_macro : "" ; Everything inside the "" will be executed after the klipper base pause (PAUSE_BASE) function
variable_user_resume_macro: "" ; Everything inside the "" will be executed before the klipper base resume (RESUME_BASE) function
variable_user_cancel_macro: "" ; Everything inside the "" will be executed before the klipper base cancel (CANCEL_PRINT_BASE) function
gcode:
Loading...