From 358454e516448c89ad7c225e1f3742f280a2c9fc Mon Sep 17 00:00:00 2001 From: "Teemu R." Date: Sun, 12 Oct 2025 19:59:29 +0200 Subject: [PATCH] Add shutdown (summer mode) to thermostatstate (#1588) According to https://github.com/home-assistant/core/issues/151870, thermostats report "shutdown" when they are set into the summer mode. --- kasa/interfaces/thermostat.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kasa/interfaces/thermostat.py b/kasa/interfaces/thermostat.py index de7831b0..c5cc512c 100644 --- a/kasa/interfaces/thermostat.py +++ b/kasa/interfaces/thermostat.py @@ -16,6 +16,7 @@ class ThermostatState(Enum): Calibrating = "progress_calibration" Idle = "idle" Off = "off" + Shutdown = "shutdown" Unknown = "unknown"