diff --git a/src/rancilio-pid.cpp b/src/rancilio-pid.cpp index e025b0551..04a740752 100644 --- a/src/rancilio-pid.cpp +++ b/src/rancilio-pid.cpp @@ -562,7 +562,7 @@ void calculateTemperatureMovingAverage() { */ boolean checkSensor(float tempInput) { boolean sensorOK = false; - boolean badCondition = (tempInput < 0 || tempInput > 150 || fabs(tempInput - previousInput) > (5+brewTempOffset)); + boolean badCondition = (tempInput < 0 || tempInput > 150 || fabs(tempInput - previousInput) > (10+brewTempOffset)); if (badCondition && !sensorError) { error++;