From e3205e425574efb9de22dd916605010a91445ad7 Mon Sep 17 00:00:00 2001 From: Niek <32094562+niekschoemaker@users.noreply.github.com> Date: Tue, 16 Dec 2025 17:37:55 +0100 Subject: [PATCH] Add defrost status binary sensor for AC appliances (#15) Add a new binary sensor to monitor the defrost status of air conditioning units. The sensor uses the 'defrostStatus' key and displays when the AC is in defrost mode with a snowflake-melt icon. --- custom_components/hon/binary_sensor.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/custom_components/hon/binary_sensor.py b/custom_components/hon/binary_sensor.py index 4e340d3..ac56888 100644 --- a/custom_components/hon/binary_sensor.py +++ b/custom_components/hon/binary_sensor.py @@ -216,6 +216,12 @@ BINARY_SENSORS: dict[str, tuple[HonBinarySensorEntityDescription, ...]] = { name="Ch2O Cleaning", on_value=1, ), + HonBinarySensorEntityDescription( + key="defrostStatus", + name="Defrost Status", + icon="mdi:snowflake-melt", + on_value=1, + ), ), "REF": ( HonBinarySensorEntityDescription(