tset heatbed target temperature to zero at the end of temp. calibration, before final message is shown

This commit is contained in:
PavelSindler 2017-05-18 19:30:20 +02:00
parent 1813819c6f
commit 12f9afce74

View File

@ -2868,11 +2868,12 @@ void process_commands()
disable_e0(); disable_e0();
disable_e1(); disable_e1();
disable_e2(); disable_e2();
setTargetBed(0); //set bed target temperature back to 0
lcd_show_fullscreen_message_and_wait_P(MSG_TEMP_CALIBRATION_DONE); lcd_show_fullscreen_message_and_wait_P(MSG_TEMP_CALIBRATION_DONE);
lcd_update_enable(true); lcd_update_enable(true);
lcd_update(2); lcd_update(2);
setTargetBed(0); //set bed target temperature back to 0
} }
break; break;