From 1a61cd622e19e07599aafe1c5ae87ca520b21937 Mon Sep 17 00:00:00 2001 From: Roy Walker Date: Sat, 28 Feb 2026 13:41:55 -0600 Subject: [PATCH] Add support for timeouts before next network connection is turned up and add support for openthread and modem. --- esphome/components/network/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/network/__init__.py b/esphome/components/network/__init__.py index 070d9c6e35..e22f97e466 100644 --- a/esphome/components/network/__init__.py +++ b/esphome/components/network/__init__.py @@ -21,7 +21,7 @@ CONF_ENABLE_HIGH_PERFORMANCE = "enable_high_performance" # Network priority tracking KEY_NETWORK_PRIORITY = "network_priority" -VALID_NETWORK_TYPES = ["ethernet", "wifi"] +VALID_NETWORK_TYPES = ["ethernet", "openthread", "wifi", "modem"] # Setup priority base values — first in list gets the highest priority NETWORK_PRIORITY_BASE = 300.0 NETWORK_PRIORITY_STEP = 100.0