From 42cab1b0edeba4a22df8220be609959cc7958283 Mon Sep 17 00:00:00 2001 From: quarky42 <48300108+quarky42@users.noreply.github.com> Date: Sun, 19 May 2019 11:32:52 -0600 Subject: [PATCH] Update homeall.g - Home Z first, then XY When running the setup macro #2 A SECOND time, the bed was touching the nozzle. The macro calls HOMEALL. The fist thing it did was move the XY. It should have homed Z first to make sure there was clearance for the nozzle. I looked at homeall.g and found that it was homing xy first. This is dangerous if the nozzle is touching the bed. It is best to home Z first which automatically creates clearance and THEN home XY. --- SD Card Structure/Quad/sys/homeall.g | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SD Card Structure/Quad/sys/homeall.g b/SD Card Structure/Quad/sys/homeall.g index e46333d..a05654a 100644 --- a/SD Card Structure/Quad/sys/homeall.g +++ b/SD Card Structure/Quad/sys/homeall.g @@ -4,10 +4,10 @@ ; Front left corner is (0,0) -; ============ HOME X & HOME Y ============== - -M98 Phomex.g ; Run the homex.g file, also homes the Y axis - ; ============ HOME Z ============== M98 Phomez.g ; Run the homez.g file + +; ============ HOME X & HOME Y ============== + +M98 Phomex.g ; Run the homex.g file, also homes the Y axis