Thingiverse
Ender 5 Plus Nozzle Cleaner
por Doowle
2
Descargas
1
Likes
0
Makes
Couldn't find a sensible nozzle cleaning brush holder for my Zero G Ender 5 Plus, so made one.
Template is to hold the location so if you take the holder off, you can put it back in the same place.
You need to confgiure the bed so that the print head will ho outside the bed, so mine is oversized to the left.
The macro I used is as follows;
[gcode_macro clean_nozzle]
gcode:
{% set wipe_count = 8 %}
{% if "xyz" not in printer.toolhead.homed_axes %}
G28
{% endif %}
SAVE_GCODE_STATE NAME=clean_nozzle_state
G90
G0 Z15 F300
{% for wipe in range(wipe_count) %}
{% for coordinate in [(5, 90),(5, 140)] %}
G0 X{coordinate[0]} Y{coordinate[1] - 0.25 * wipe} Z10 F12000
{% endfor %}
{% endfor %}
RESTORE_GCODE_STATE NAME=clean_nozzle_state
Template is to hold the location so if you take the holder off, you can put it back in the same place.
You need to confgiure the bed so that the print head will ho outside the bed, so mine is oversized to the left.
The macro I used is as follows;
[gcode_macro clean_nozzle]
gcode:
{% set wipe_count = 8 %}
{% if "xyz" not in printer.toolhead.homed_axes %}
G28
{% endif %}
SAVE_GCODE_STATE NAME=clean_nozzle_state
G90
G0 Z15 F300
{% for wipe in range(wipe_count) %}
{% for coordinate in [(5, 90),(5, 140)] %}
G0 X{coordinate[0]} Y{coordinate[1] - 0.25 * wipe} Z10 F12000
{% endfor %}
{% endfor %}
RESTORE_GCODE_STATE NAME=clean_nozzle_state
¿Has impreso este modelo? Inicia sesión y comparte tu make.
Inicia sesión para dejar un comentario
Iniciar sesiónAún no hay comentarios – ¡sé el primero!