From de554466cc149b241db21ab6b76ee4e1ba7d0a77 Mon Sep 17 00:00:00 2001 From: bkcsfi Date: Sun, 17 Oct 2021 15:25:55 -0400 Subject: [PATCH] fix typo in comment comment didn't match code, I updated the comment to match --- tasmota/tasmota.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota.ino b/tasmota/tasmota.ino index 351fbed7c..742d564a7 100644 --- a/tasmota/tasmota.ino +++ b/tasmota/tasmota.ino @@ -573,7 +573,7 @@ void loop(void) { SleepDelay((uint32_t)TasmotaGlobal.sleep - my_activity); // Provide time for background tasks like wifi } else { if (TasmotaGlobal.global_state.network_down) { - SleepDelay(my_activity /2); // If wifi down and my_activity > setoption36 then force loop delay to 1/3 of my_activity period + SleepDelay(my_activity /2); // If wifi down and my_activity > setoption36 then force loop delay to 1/2 of my_activity period } } }