61 lines
1.5 KiB
Markdown
61 lines
1.5 KiB
Markdown
# Useful macros for Moonraker/Mainsail
|
|
|
|
## pause / resume / cancel
|
|
```
|
|
#is required to load the pause_resume module in klipper
|
|
[pause_resume]
|
|
|
|
[gcode_macro PAUSE]
|
|
rename_existing: BASE_PAUSE
|
|
default_parameter_X: 230 #edit to your park position
|
|
default_parameter_Y: 230 #edit to your park position
|
|
default_parameter_Z: 10 #edit to your park position
|
|
default_parameter_E: 1 #edit to your retract length
|
|
gcode:
|
|
SAVE_GCODE_STATE NAME=PAUSE_state
|
|
BASE_PAUSE
|
|
G91
|
|
G1 E-{E} F2100
|
|
G1 Z{Z}
|
|
G90
|
|
G1 X{X} Y{Y} F6000
|
|
|
|
[gcode_macro RESUME]
|
|
rename_existing: BASE_RESUME
|
|
default_parameter_E: 1 #edit to your retract length
|
|
gcode:
|
|
G91
|
|
G1 E{E} F2100
|
|
G90
|
|
RESTORE_GCODE_STATE NAME=PAUSE_state MOVE=1
|
|
BASE_RESUME
|
|
|
|
[gcode_macro CANCEL_PRINT]
|
|
rename_existing: BASE_CANCEL_PRINT
|
|
default_parameter_X: 230 #edit to your park position
|
|
default_parameter_Y: 230 #edit to your park position
|
|
default_parameter_Z: 10 #edit to your park position
|
|
gcode:
|
|
M104 S0
|
|
M140 S0
|
|
M141 S0
|
|
M106 S0
|
|
CLEAR_PAUSE
|
|
SDCARD_RESET_FILE
|
|
BASE_CANCEL_PRINT
|
|
```
|
|
|
|
## customize klipper default commands
|
|
for example, if you want to adjust the BED_MESH_CALIBRATE command, which will execute under "heightmap > calibrate".
|
|
```
|
|
[gcode_macro BED_MESH_CALIBRATE]
|
|
rename_existing: BASE_BED_MESH_CALIBRATE
|
|
gcode:
|
|
#before the original gcode
|
|
BED_MESH_CLEAR
|
|
QUAD_GANTRY_LEVEL
|
|
G1 X125 Y125 Z5 F6000
|
|
#the original gcode
|
|
BASE_BED_MESH_CALIBRATE
|
|
#after the original gcode
|
|
``` |