macros: cleanup, change pause position
This commit is contained in:
parent
8ed9d842f6
commit
9ba2d83414
1 changed files with 2 additions and 3 deletions
|
@ -43,7 +43,6 @@ gcode:
|
||||||
G91 # Use relativ coordinates
|
G91 # Use relativ coordinates
|
||||||
G1 X-2 Y-2 E-3 F300 # Move nozzle away from print while retracting
|
G1 X-2 Y-2 E-3 F300 # Move nozzle away from print while retracting
|
||||||
G1 Z10 F3000 # Raise nozzle by 10mm
|
G1 Z10 F3000 # Raise nozzle by 10mm
|
||||||
G1 Z10 F3000 # Raise nozzle by 10mm
|
|
||||||
G90 # Use absolute coordinates
|
G90 # Use absolute coordinates
|
||||||
M84 # Disable steppers
|
M84 # Disable steppers
|
||||||
NEOPIXEL_OFF # Turn off NeoPixel
|
NEOPIXEL_OFF # Turn off NeoPixel
|
||||||
|
@ -63,8 +62,8 @@ gcode:
|
||||||
description: Pause the actual running print
|
description: Pause the actual running print
|
||||||
rename_existing: PAUSE_BASE
|
rename_existing: PAUSE_BASE
|
||||||
gcode:
|
gcode:
|
||||||
{% set x = params.X|default(160) %}
|
{% set x = params.X|default(170) %}
|
||||||
{% set y = params.Y|default(20) %}
|
{% set y = params.Y|default(170) %}
|
||||||
{% set z = params.Z|default(10)|float %}
|
{% set z = params.Z|default(10)|float %}
|
||||||
{% set e = params.E|default(1) %}
|
{% set e = params.E|default(1) %}
|
||||||
## calculate save lift position
|
## calculate save lift position
|
||||||
|
|
Loading…
Reference in a new issue