How to clean the nozzle after printing the purge lines

I have issues with a few filaments where the nozzle needs cleaning after doing the flow calibration and printing the purge lines, so I would like to make the printer clean the nozzle after printing the purge lines.

I just need the nozzle to pass 2 or 3 times over the nozzle wiper after printing the purge lines.

I tried messing with the “Machine start G-code” but I don’t know the coordinates of the place where the moves should be done…

thanks!

1 Like

I figured that out myself, I just added this block of code from the wipe nozzle section to the end of Machine start G-code:

;===== wipe the nozzle before starting printing the object ===============================
G1 X60 Y265
G92 E0
G1 E-0.5 F300 ; retrack more
G1 X100 F5000; second wipe mouth
G1 X70 F15000
G1 X100 F5000
G1 X70 F15000
G1 X100 F5000
G1 X70 F15000
G1 X100 F5000
G1 X70 F15000
G1 X90 F5000
;===== wipe the nozzle before starting printing the object end ===============================
3 Likes