From 640e68951911a6579bc5d7438209c315f8722f6f Mon Sep 17 00:00:00 2001 From: "Papezhuk, Roman" Date: Tue, 1 Jul 2025 11:34:34 +0000 Subject: [PATCH] update OnOff status set --- custom_components/hon/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/hon/climate.py b/custom_components/hon/climate.py index f3ce937..f7c1933 100644 --- a/custom_components/hon/climate.py +++ b/custom_components/hon/climate.py @@ -199,7 +199,7 @@ class HonACClimateEntity(HonEntity, ClimateEntity): self._attr_hvac_mode = hvac_mode if hvac_mode == HVACMode.OFF: await self._device.commands["stopProgram"].send() - self._device.sync_command("stopProgram", "settings") + self._device.settings["settings.onOffStatus"].value = "0" else: self._device.settings["settings.onOffStatus"].value = "1" setting = self._device.settings["settings.machMode"]