From 0e1038d192b03396741ca17378a68efb6d3edcab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heath=20Dutton=F0=9F=95=B4=EF=B8=8F?= Date: Tue, 6 Jan 2026 17:07:39 -0500 Subject: [PATCH] Fix wrong if statement in wifi.cpp --- ESP32-DIV/wifi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ESP32-DIV/wifi.cpp b/ESP32-DIV/wifi.cpp index e559838..f7a8ca0 100644 --- a/ESP32-DIV/wifi.cpp +++ b/ESP32-DIV/wifi.cpp @@ -1099,10 +1099,10 @@ void runUI() { if (millis() - lastSpamTime >= 50) { spammer(); - if (activeIcon = 3) { + if (activeIcon == 3) { output(); } - if (activeIcon = 3) { + if (activeIcon == 3) { animationState = 5; } lastSpamTime = millis();