From 46612cddace920a9858bd5d11361261358b0c48d Mon Sep 17 00:00:00 2001 From: arijav <63751025+arijav@users.noreply.github.com> Date: Sat, 18 Apr 2020 10:22:42 +0200 Subject: [PATCH] Correction to counter_seconds --- tasmota/xdrv_39_heating.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_39_heating.ino b/tasmota/xdrv_39_heating.ino index 47646b5ca..d3d58c90d 100644 --- a/tasmota/xdrv_39_heating.ino +++ b/tasmota/xdrv_39_heating.ino @@ -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); }