From 46533fe817b28c32cdbceec364a92b6464e71b44 Mon Sep 17 00:00:00 2001 From: Nicolas Hilberg Date: Mon, 2 Sep 2024 15:47:36 +0200 Subject: [PATCH] add missing scene icons (#88) Co-authored-by: Nicolas Hilberg --- src/dirigera/devices/scene.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/dirigera/devices/scene.py b/src/dirigera/devices/scene.py index e737657..6a8c53e 100644 --- a/src/dirigera/devices/scene.py +++ b/src/dirigera/devices/scene.py @@ -52,6 +52,9 @@ class Icon(Enum): SCENES_WAKE_UP = "scenes_wake_up" SCENES_WEIGHTS = "scenes_weights" SCENES_YOGA = "scenes_yoga" + SCENES_COLD_DRINK_CONTENTS = "scenes_cold_drink_contents" + SCENES_FLAME = "scenes_flame" + SCENES_SNOWFLAKE = "scenes_snowflake" class Info(BaseIkeaModel): @@ -60,7 +63,9 @@ class Info(BaseIkeaModel): class Trigger(BaseIkeaModel): - id: Optional[str] = None # Optional to allow creation of Trigger instances for create_scene() + id: Optional[str] = ( + None # Optional to allow creation of Trigger instances for create_scene() + ) type: str triggered_at: Optional[datetime.datetime] = None disabled: bool