Bring chamber temp to completion (#13837)

This commit is contained in:
Giuliano Zaro
2019-05-05 05:51:47 +02:00
committed by Scott Lahteine
parent 24177954dd
commit e2a77ed881
102 changed files with 349 additions and 145 deletions

View File

@ -60,7 +60,7 @@ void GcodeSuite::M191() {
const bool no_wait_for_cooling = parser.seenval('S');
if (no_wait_for_cooling || parser.seenval('R')) {
thermalManager.setTargetBed(parser.value_celsius());
thermalManager.setTargetChamber(parser.value_celsius());
#if ENABLED(PRINTJOB_TIMER_AUTOSTART)
if (parser.value_celsius() > BED_MINTEMP)
print_job_timer.start();
@ -68,9 +68,9 @@ void GcodeSuite::M191() {
}
else return;
lcd_setstatusPGM(thermalManager.isHeatingBed() ? PSTR(MSG_BED_HEATING) : PSTR(MSG_BED_COOLING));
lcd_setstatusPGM(thermalManager.isHeatingChamber() ? PSTR(MSG_CHAMBER_HEATING) : PSTR(MSG_CHAMBER_COOLING));
thermalManager.wait_for_bed(no_wait_for_cooling);
thermalManager.wait_for_chamber(no_wait_for_cooling);
}
*/