From 8d284ea90c097f911a049b33861bfde5284a492c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 10 Nov 2025 13:30:36 -0600 Subject: [PATCH] fixes --- esphome/components/wifi/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esphome/components/wifi/__init__.py b/esphome/components/wifi/__init__.py index 146e6eb78f..b4a02f9f15 100644 --- a/esphome/components/wifi/__init__.py +++ b/esphome/components/wifi/__init__.py @@ -202,7 +202,8 @@ def validate_variant(_): def _apply_min_auth_mode_default(config): """Apply platform-specific default for min_auth_mode and warn ESP8266 users.""" - if CONF_MIN_AUTH_MODE not in config: + # Only apply defaults for platforms that support min_auth_mode + if CONF_MIN_AUTH_MODE not in config and (CORE.is_esp8266 or CORE.is_esp32): if CORE.is_esp8266: _LOGGER.warning( "The minimum WiFi authentication mode (min_auth_mode) is not set. "