End-of-Print Issue with Ender 3 V3 SE 3D Printer

Hello everyone,

I have an issue at the end of the print with my Ender 3 V3 SE 3D printer. When the model is fully printed, the end code should be executed. Instead, the printer moves to the center of the print table after printing, deploys the Z-probe, and attempts to lower itself to the printed part. I want to disable this function but can’t find the corresponding code.

I am using PrusaSlicer, and it may be related to the software, but I couldn’t locate this feature. Has anyone experienced and resolved this issue?

Double check your End GCode sections as it looks like you have some custom gcode within your filament parameters that is telling the printer to home itself immediately after turning off the hot end and heated bed.

G28 ; home X axis

Removing the G28 line of code from the filament end gcode should cure the issue with the printer attempting to prod your print when it finishes.

The G28 command generally homes all axis not just the X axis.

Hope this helps :slight_smile:

Hello, yes, this helped! Thank you!

1 Like