Modules
Main module.
LifxCloud
¶
Class to represent LIFX Cloud access.
Source code in src/asyncio_lifx_scenes/scenes.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
|
__init__(token)
¶
Initialize the LIFX scene.
Source code in src/asyncio_lifx_scenes/scenes.py
22 23 24 25 |
|
activate_scene(scene_uuid, duration=1, ignore=None, fast=False)
¶
Activate a scene by UUID.
Source code in src/asyncio_lifx_scenes/scenes.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
|
async_activate_scene(scene_uuid, duration=1, ignore=None, fast=False)
async
¶
Activate a scene by UUID.
Source code in src/asyncio_lifx_scenes/scenes.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
|
async_list_scenes()
async
¶
Asynchronously return a list of scenes stored on LIFX Cloud.
Source code in src/asyncio_lifx_scenes/scenes.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
list_scenes()
¶
Return a list of scenes stored on LIFX Cloud.
Source code in src/asyncio_lifx_scenes/scenes.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|