Improve WiFi reliability, especially on esp32-idf

That is, mystrom devices. BSS transition turned out to cause
issues (as Unifi was suggesting) when not client-supported.
This commit is contained in:
2025-03-22 17:57:01 +00:00
parent abce37e342
commit ba10ce84ec
2 changed files with 7 additions and 0 deletions
+4
View File
@@ -27,6 +27,10 @@ packages:
logger: logger:
wifi:
# BSS Transition Management support which we have enabled in APs.
enable_btm: true
i2c: i2c:
sda: 22 sda: 22
scl: 19 scl: 19
+3
View File
@@ -20,4 +20,7 @@ text_sensor:
wifi: wifi:
ssid: !secret wifi_ssid ssid: !secret wifi_ssid
password: !secret wifi_password password: !secret wifi_password
# Used for uploading, and our DNS server understands unqualified queries.
domain: "" domain: ""
# Require reliable WiFi connection for IoT.
power_save_mode: none