Adding delay in Printer Preset

Hello all, I want to add a delay to the end G-code that will let the plate cool down and make the part a breeze to remove. I have the following where I add the G4 command. It have no effect so I’m wondering if the firmware enable that command or not.

;=====printer finish sound=========
G4 S600
M400 S1
M18 X Y Z

Thanks!

The issue is that you are using a delay greater than 90 seconds.

90s is max value that can be delayed with G4. To delay for > 90 sec, run multiple G4 S90

You can run multiple but you might be better off using a single M400 S600

Bambu Gcode reference

1 Like

Thank you for the suggestion. I tried both and both failed. I must do something wrong :frowning: