Although there are many models of Nozzle Wiper for the Ender 3, I've not been able to find one that fitted my Enderwire Conversion.
My model uses the Silicone Brushes from the Bambu Lab A1 as I'm not a fan of Brass Brushes. There's a cheap option on this link.
Print this in ABS or something that can withstand the heat. Conventional Voron parts settings are fine.
I've made the macro below and added to my Macros.cfg file in Klipper. You can run this before every print or as you see fit, however beware that the wiper is mounted to the bed so I don't believe you can use it at layer changes, for example.
Don't forget to setup the distances of travel and position to your build.
I'm not well versed in Macros, so you need to do this manually. If you have a better one, please be welcome to publish your macros with the community as well.
[gcode_macro NOZZLE_WIPE]
gcode:
G90
G1 X220 Y-5.5 Z5 F18000#Move nozzle to wiper position
G1 X220 Y-5.5 Z0 F5000 #lower to bucket
#initiate wiping
G1 X210 Y-9 F1000
G1 X205 Y-4 F1000
G1 X200 Y-9 F1000
G1 X195 Y-4 F1000
G1 X190 Y-9 F1000
G1 X185 Y-4 F1000
#finish wiping
G1 X185 Y-4 Z5 F5000 #rise nozzle again
#End
Hope this is useful to you too!
Happy Printing!
The author marked this model as their own original creation.