Skip to content

Commit

Permalink
Increase global counter MAX value
Browse files Browse the repository at this point in the history
Change-Id: I93b970f5b2aae9865f36b1260d83d857744b6d1d
Signed-off-by: Andrey Shamis <lolnik@gmail.com>
  • Loading branch information
AndreyShamis committed Dec 21, 2017
1 parent f8a6609 commit 7efb015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SmartRoomHeater.ino
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ void loop(void) {
//ESP.deepSleep(sleepTimeS * 1000000, RF_DEFAULT);
delay(LOOP_DELAY);
counter++;
if (counter >= 12000) {
if (counter >= 16000) {
counter = 0;
//printTemperatureToSerial();
}
Expand Down

0 comments on commit 7efb015

Please sign in to comment.