Turn off heaters just prior to retraction to limit oozing

This commit is contained in:
Yuri D'Elia 2019-12-03 19:54:06 +01:00
parent 4fce74140a
commit 792d7ca6dc

View file

@ -9555,9 +9555,11 @@ float temp_compensation_pinda_thermistor_offset(float temperature_pinda)
void long_pause() //long pause print
{
st_synchronize();
start_pause_print = _millis();
// Stop heaters
setAllTargetHotends(0);
//retract
current_position[E_AXIS] -= default_retraction;
plan_buffer_line_curposXYZE(400, active_extruder);
@ -9572,8 +9574,7 @@ void long_pause() //long pause print
current_position[Y_AXIS] = Y_PAUSE_POS;
plan_buffer_line_curposXYZE(50, active_extruder);
// Turn off the hotends and print fan
setAllTargetHotends(0);
// Turn off the print fan
fanSpeed = 0;
}