add readmes to examples.

This commit is contained in:
onyx-and-iris
2022-08-31 20:13:44 +01:00
parent 7c6ebd1dae
commit 66a06617c6
4 changed files with 53 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
## About
Collects the names of all available scenes, rotates through them and prints their name.
## Use
This example assumes the existence of a `config.toml`, placed next to `__main__.py`:
```toml
[connection]
host = "localhost"
port = 4455
password = "mystrongpass"
```

View File

@@ -7,9 +7,9 @@ def main():
resp = cl.get_scene_list()
scenes = reversed(tuple(di.get("sceneName") for di in resp.scenes))
for sc in scenes:
print(f"Switching to scene {sc}")
cl.set_current_program_scene(sc)
for scene in scenes:
print(f"Switching to scene {scene}")
cl.set_current_program_scene(scene)
time.sleep(0.5)