Skip to content

Commit

Permalink
add missing scene icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Hilberg committed Sep 2, 2024
1 parent 297e57b commit e6d1d69
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/dirigera/devices/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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
Expand Down

0 comments on commit e6d1d69

Please sign in to comment.