Allow ed temoeratures higher than 115 degrees
This commit is contained in:
@@ -1843,8 +1843,11 @@ void AnycubicTouchscreenClass::GetCommandFromTFT()
|
||||
unsigned int tempbed;
|
||||
if (CodeSeen('S'))
|
||||
{
|
||||
tempbed = constrain(CodeValue(), 0, 150);
|
||||
tempbed = constrain(CodeValue(), 0, 115);
|
||||
thermalManager.setTargetBed(tempbed);
|
||||
if(thermalManager.degTargetBed() <= 115) {
|
||||
thermalManager.setTargetBed(tempbed); // do not set Temp from TFT if it is set via gcode
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user