1
0
Fork 0
mirror of https://github.com/Andre0512/hon.git synced 2025-05-30 22:45:16 -04:00

Add wine cellar

This commit is contained in:
Andre Basche 2023-06-10 06:44:19 +02:00
parent efcac321b8
commit eb5ba43707
25 changed files with 669 additions and 5 deletions
custom_components/hon

View file

@ -322,6 +322,17 @@ SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = {
translation_key="holiday_mode",
),
),
"WC": (
HonSwitchEntityDescription(
key="sabbathStatus",
name="Sabbath Mode",
icon="mdi:palm-tree",
translation_key="holiday_mode",
),
HonSwitchEntityDescription(
key="lightStatus", name="Light", icon="mdi:lightbulb"
),
),
}
SWITCHES["WD"] = unique_entities(SWITCHES["WD"], SWITCHES["WM"])