fix: M600 Move Out of Range error
This commit should fix the Move out of Range when doing a filament change for Ender 3 V3 models.
This commit is contained in:
parent
8bd52223b1
commit
9a2e86a855
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ variable_m600_state: 0
|
|||
variable_fan0_speed: 0
|
||||
gcode:
|
||||
{% set E = printer["gcode_macro PAUSE"].extrude|float %}
|
||||
{% set y_park = printer.toolhead.axis_minimum.y|float - 5.0 %}
|
||||
{% set y_park = printer.toolhead.axis_minimum.y|float + 10.0 %}
|
||||
{% set x_park = printer.toolhead.axis_maximum.x|float - 10.0 %}
|
||||
{% set max_z = printer["gcode_macro PRINTER_PARAM"].max_z_position|float %}
|
||||
{% set act_z = printer.toolhead.position.z|float %}
|
||||
|
|
Loading…
Add table
Reference in a new issue