Skip to content

Commit

Permalink
Merge pull request #308 from murmeltier08/esp8266
Browse files Browse the repository at this point in the history
increase sensor temperature check diff
  • Loading branch information
murmeltier08 authored Jan 22, 2023
2 parents 89bac8e + 1f6dad9 commit 4c8284e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rancilio-pid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
Expand Down

0 comments on commit 4c8284e

Please sign in to comment.