From a27af820eaef7253394ae68e3b040e2b53f7e5e3 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 9 Nov 2025 15:55:39 -0600 Subject: [PATCH] wip --- esphome/components/wifi/wifi_component.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/esphome/components/wifi/wifi_component.cpp b/esphome/components/wifi/wifi_component.cpp index 9195ed02a0..9f007c3707 100644 --- a/esphome/components/wifi/wifi_component.cpp +++ b/esphome/components/wifi/wifi_component.cpp @@ -709,10 +709,6 @@ void WiFiComponent::start_scanning() { // Priority is decreased when a BSSID fails to connect, so lower priority = previously failed if (a.get_priority() != b.get_priority()) return a.get_priority() > b.get_priority(); - - // If priorities are equal, prefer stronger signal - // This helps with mesh networks and multiple APs with same SSID - return a.get_rssi() > b.get_rssi(); } // Both don't match - sort by signal strength