Skip to content

Commit

Permalink
Do not let nozzle cool down too much
Browse files Browse the repository at this point in the history
If nozzle temp is above 170°C it will be cooled down and heated up again to 170°C. This patch will cool down the nozzle to 170°C
  • Loading branch information
ph3x committed Jan 3, 2022
1 parent 47bb068 commit 6982890
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ gcode:
M140 S{BED_TEMP}
# set extruder temp to 170°C to avoid filament dripping
{% if printer.extruder.temperature|int > 170 %}
M117 Nozzle temp +170
M117 Nozzle temp +170 - cooling
M104 S170
{% else %}
M117 Preheating to 170
M104 S170
Expand Down

0 comments on commit 6982890

Please sign in to comment.