From 6c5f9c6fcbace0534b96134bc2ff2eb2b4079fd3 Mon Sep 17 00:00:00 2001 From: hpirila <37920282+hpirila@users.noreply.github.com> Date: Tue, 17 Jan 2023 17:42:04 +0700 Subject: [PATCH] Add sous vide start functionality (#84447) --- homeassistant/components/tuya/switch.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/homeassistant/components/tuya/switch.py b/homeassistant/components/tuya/switch.py index 9bab4822030..dd9a156c554 100644 --- a/homeassistant/components/tuya/switch.py +++ b/homeassistant/components/tuya/switch.py @@ -310,6 +310,12 @@ SWITCHES: dict[str, tuple[SwitchEntityDescription, ...]] = { SwitchEntityDescription( key=DPCode.SWITCH, name="Switch", + icon="mdi:power", + entity_category=EntityCategory.CONFIG, + ), + SwitchEntityDescription( + key=DPCode.START, + name="Start", icon="mdi:pot-steam", entity_category=EntityCategory.CONFIG, ),