Correction to counter_seconds

This commit is contained in:
arijav 2020-04-18 10:22:42 +02:00 committed by GitHub
parent f937504dd5
commit 46612cddac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ bool HeatingMinuteCounter()
if ((Heating.status.counter_seconds % 60) == 0) {
result = true;
Heating.status.counter_seconds = 1;
Heating.status.counter_seconds = 0;
}
return(result);
}