Add Tumble Dryer support, tested with haier HD80-A3959 and Bulgarian translation #6

Merged
drudgebg merged 10 commits from main into main 2023-03-21 22:14:56 +01:00
Showing only changes of commit 196309ef5f - Show all commits

View File

@ -37,6 +37,20 @@ BINARY_SENSORS: dict[str, tuple[HonBinarySensorEntityDescription, ...]] = {
device_class=BinarySensorDeviceClass.DOOR,
on_value="0",
),
),
"TD": (
HonBinarySensorEntityDescription(
key="attributes.lastConnEvent.category",
name="Connection",
device_class=BinarySensorDeviceClass.CONNECTIVITY,
on_value="CONNECTED",
),
HonBinarySensorEntityDescription(
key="doorStatus",
name="Door",
device_class=BinarySensorDeviceClass.DOOR,
on_value="1",
),
)
}