From 8e73c2557f1d8b836700c11bb0a35c0a35d91e30 Mon Sep 17 00:00:00 2001 From: Penny Wood Date: Tue, 5 Nov 2024 22:13:10 +0800 Subject: [PATCH] Move retract to directly after the blob. Moved the final retract to the end of the blob, before the z-lift. Cuts the blob off cleanly, instead of leaving a string on it. This means the blobs separate cleanly in the bucket instead of all tangling together. --- config/addons/blobifier.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/addons/blobifier.cfg b/config/addons/blobifier.cfg index 48d46509..264eb952 100644 --- a/config/addons/blobifier.cfg +++ b/config/addons/blobifier.cfg @@ -470,6 +470,9 @@ gcode: {% endfor %} + # Retract to match what Happy Hare is expecting + G1 E-{park_vars.retracted_length} F{sequence_vars.retract_speed * 60} + # ================================================================================== # ==================== DEPOSIT BLOB ================================================ # ================================================================================== @@ -512,9 +515,6 @@ gcode: {% endif %} M220 S{(backup_feedrate * 100)|int} - - # Final retract to match what Happy Hare is expecting - G1 E-{park_vars.retracted_length} F{sequence_vars.retract_speed * 60} {% endif %} RESTORE_GCODE_STATE NAME=BLOBIFIER_state