Allow ed temoeratures higher than 115 degrees

This commit is contained in:
Knutwurst
2021-09-30 10:24:50 +02:00
parent 21d062c285
commit d845160163

View File

@@ -362,7 +362,7 @@ void AnycubicTouchscreenClass::StartPrint()
#endif #endif
break; break;
case 2: case 2:
// paused by M600 // paused by M600
#ifdef ANYCUBIC_TFT_DEBUG #ifdef ANYCUBIC_TFT_DEBUG
SERIAL_ECHOPAIR(" DEBUG: AI3M Pause State: ", ai3m_pause_state); SERIAL_ECHOPAIR(" DEBUG: AI3M Pause State: ", ai3m_pause_state);
SERIAL_EOL(); SERIAL_EOL();
@@ -1843,8 +1843,11 @@ void AnycubicTouchscreenClass::GetCommandFromTFT()
unsigned int tempbed; unsigned int tempbed;
if (CodeSeen('S')) if (CodeSeen('S'))
{ {
tempbed = constrain(CodeValue(), 0, 150); tempbed = constrain(CodeValue(), 0, 115);
thermalManager.setTargetBed(tempbed); thermalManager.setTargetBed(tempbed);
if(thermalManager.degTargetBed() <= 115) {
thermalManager.setTargetBed(tempbed); // do not set Temp from TFT if it is set via gcode
}
} }
} }
break; break;