From aa7e792dcdd2dadd0f27b327ea86269c271bb00d Mon Sep 17 00:00:00 2001 From: 0xpsi Date: Mon, 22 Jan 2024 22:21:09 -0600 Subject: [PATCH] Add a speed to the PARK macro, without it the speed is random and sometimes extremely slow --- .../klipper_configurations/Octopus/Voron2_Octopus_Config.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/klipper_configurations/Octopus/Voron2_Octopus_Config.cfg b/firmware/klipper_configurations/Octopus/Voron2_Octopus_Config.cfg index 071a60dc..6fd56c51 100644 --- a/firmware/klipper_configurations/Octopus/Voron2_Octopus_Config.cfg +++ b/firmware/klipper_configurations/Octopus/Voron2_Octopus_Config.cfg @@ -541,7 +541,7 @@ aliases: [gcode_macro PARK] gcode: {% set th = printer.toolhead %} - G0 X{th.axis_maximum.x//2} Y{th.axis_maximum.y//2} Z30 + G0 X{th.axis_maximum.x//2} Y{th.axis_maximum.y//2} Z30 F3000 [gcode_macro G32] gcode: @@ -590,4 +590,4 @@ gcode: # and speed settings since the commands above change them. # However, to prevent any accidental, unintentional toolhead # moves when restoring the state, explicitly set MOVE=0. - RESTORE_GCODE_STATE NAME=STATE_PRINT_END MOVE=0 \ No newline at end of file + RESTORE_GCODE_STATE NAME=STATE_PRINT_END MOVE=0