Merge pull request #15 from ceedee666/main
Updated calculation of `y_park` for Ender 3v3 KE
This commit is contained in:
commit
32c970116f
1 changed files with 2 additions and 2 deletions
|
@ -59,8 +59,8 @@ variable_m600_state: 0
|
||||||
variable_fan0_speed: 0
|
variable_fan0_speed: 0
|
||||||
gcode:
|
gcode:
|
||||||
{% set E = printer["gcode_macro PAUSE"].extrude|float %}
|
{% 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 - 5.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 max_z = printer["gcode_macro PRINTER_PARAM"].max_z_position|float %}
|
||||||
{% set act_z = printer.toolhead.position.z|float %}
|
{% set act_z = printer.toolhead.position.z|float %}
|
||||||
{% set z_safe = 0.0 %}
|
{% set z_safe = 0.0 %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue