change closed loop threshold

This commit is contained in:
Matthew Kennedy 2020-12-10 18:10:26 -08:00
parent b8c5e42f9d
commit 180b9f6904
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ static HeaterState GetNextState(HeaterState state, float sensorEsr)
// Stay in preheat - wait for time to elapse // Stay in preheat - wait for time to elapse
break; break;
case HeaterState::WarmupRamp: case HeaterState::WarmupRamp:
if (sensorEsr < 2000) if (sensorEsr < 1000)
{ {
return HeaterState::ClosedLoop; return HeaterState::ClosedLoop;
} }