mirror of
https://github.com/Andre0512/hon.git
synced 2026-06-15 03:36:27 +00:00
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.
This commit is contained in:
parent
e01d19efd6
commit
e3205e4255
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Reference in a new issue