From 785e6712e242cb65516c2dff6c5ccc7040121afd Mon Sep 17 00:00:00 2001 From: Zach Schimke Date: Tue, 7 Dec 2021 20:58:49 -0700 Subject: [PATCH] Move toolhead to center always before bed heating --- macros.d/start_end.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/macros.d/start_end.cfg b/macros.d/start_end.cfg index 56c68af..9824b57 100644 --- a/macros.d/start_end.cfg +++ b/macros.d/start_end.cfg @@ -29,10 +29,11 @@ gcode: # Perform a G28 'home' (if needed) SMARTHOME + G0 X{mid_x} Y{mid_y} Z10 F20000 + # Check to see if we need more time preheating the bed, if so {% if printer.heater_bed.temperature < params.T_BED|float*0.85 %} M117 Heating bed to 85% - G0 X{mid_x} Y{mid_y} Z10 F20000 M106 M190 S{params.T_BED|float*0.85} {% endif %}