From 485a39e7408370f164e48a068bd058cdf2e777a1 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Mon, 27 Apr 2026 16:46:36 +0300 Subject: [PATCH] Disable wi-fi power save to improve responsiveness --- flix/wifi.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/flix/wifi.ino b/flix/wifi.ino index 6814dbe..8386d89 100644 --- a/flix/wifi.ino +++ b/flix/wifi.ino @@ -25,6 +25,7 @@ void setupWiFi() { } else if (wifiMode == W_STA) { WiFi.begin(storage.getString("WIFI_STA_SSID", "").c_str(), storage.getString("WIFI_STA_PASS", "").c_str()); } + WiFi.setSleep(false); // disable power save udp.begin(udpLocalPort); }