From 70fa4dc3b21f88244c86771972c4cf1193e8f034 Mon Sep 17 00:00:00 2001 From: Kevin Ahrendt Date: Tue, 2 Dec 2025 14:26:24 -0500 Subject: [PATCH] fix codegen and increase update interval --- esphome/components/wifi_info/text_sensor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/wifi_info/text_sensor.py b/esphome/components/wifi_info/text_sensor.py index 8cc0c4e66f..0af4ebaf62 100644 --- a/esphome/components/wifi_info/text_sensor.py +++ b/esphome/components/wifi_info/text_sensor.py @@ -62,13 +62,13 @@ CONFIG_SCHEMA = cv.Schema( ), cv.Optional(CONF_DNS_ADDRESS): text_sensor.text_sensor_schema( DNSAddressWifiInfo, entity_category=ENTITY_CATEGORY_DIAGNOSTIC - ).extend(cv.polling_component_schema("1s")), + ), cv.Optional(CONF_POWER_SAVE_MODE): cv.All( text_sensor.text_sensor_schema( PowerSaveModeWiFiInfo, icon=ICON_WIFI, entity_category=ENTITY_CATEGORY_DIAGNOSTIC, - ).extend(cv.polling_component_schema("1s")), + ).extend(cv.polling_component_schema("60s")), cv.only_on(["esp32"]), ), }