Skip to content

Commit

Permalink
Update scenes
Browse files Browse the repository at this point in the history
  • Loading branch information
testuser7 authored Sep 30, 2023
1 parent a11d2c7 commit 6877913
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pywizlight/scenes.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@
5: "Fireplace",
6: "Cozy",
7: "Forest",
8: "Pastel Colors",
9: "Wake up",
8: "Pastel colors",
9: "Wake-up",
10: "Bedtime",
11: "Warm White",
11: "Warm white",
12: "Daylight",
13: "Cool white",
14: "Night light",
15: "Focus",
16: "Relax",
17: "True colors",
18: "TV time",
19: "Plantgrowth",
19: "Plant growth",
20: "Spring",
21: "Summer",
22: "Fall",
23: "Deepdive",
23: "Deep dive",
24: "Jungle",
25: "Mojito",
26: "Club",
Expand All @@ -37,11 +37,13 @@
30: "Golden white",
31: "Pulse",
32: "Steampunk",
33: "Diwali",
35: "Alarm",
1000: "Rhythm",
}
SCENE_NAME_TO_ID = {scene_name: scene_id for (scene_id, scene_name) in SCENES.items()}
TW_SCENES = [6, 9, 10, 11, 12, 13, 14, 15, 16, 18, 29, 30, 31, 32]
DW_SCENES = [9, 10, 13, 14, 29, 30, 31, 32]
TW_SCENES = [6, 9, 10, 11, 12, 13, 14, 15, 16, 18, 29, 30, 31, 32, 33, 35]
DW_SCENES = [9, 10, 13, 14, 29, 31, 32, 35]

SCENES_BY_CLASS: Dict[BulbClass, List[str]] = {
BulbClass.RGB: list(cast(Iterable, SCENES.values())),
Expand Down

0 comments on commit 6877913

Please sign in to comment.