From e7e661099afbe141c68a8f0327487a8350e4cb7d Mon Sep 17 00:00:00 2001 From: Christian Drumm Date: Thu, 23 May 2024 19:22:08 +0200 Subject: [PATCH 1/2] Updated y_park and x_park calculation minimum.y seems to be negative. Therefore substracting leeds to an error. The used values worked on my printer. --- files/macros/M600-support-ke.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/macros/M600-support-ke.cfg b/files/macros/M600-support-ke.cfg index 4ba463a..138b41f 100644 --- a/files/macros/M600-support-ke.cfg +++ b/files/macros/M600-support-ke.cfg @@ -59,8 +59,8 @@ 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 x_park = printer.toolhead.axis_maximum.x|float - 5.0 %} + {% set y_park = printer.toolhead.axis_minimum.y|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 act_z = printer.toolhead.position.z|float %} {% set z_safe = 0.0 %} From 5efe9a59378db1f0ad9324c24faabe3ac7cce039 Mon Sep 17 00:00:00 2001 From: Christian Drumm Date: Thu, 23 May 2024 19:34:28 +0200 Subject: [PATCH 2/2] Update M600-support-ke.cfg --- files/macros/M600-support-ke.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/macros/M600-support-ke.cfg b/files/macros/M600-support-ke.cfg index 138b41f..91697f0 100644 --- a/files/macros/M600-support-ke.cfg +++ b/files/macros/M600-support-ke.cfg @@ -59,7 +59,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 %}