File: change_name.py

package info (click to toggle)
python-elgato 5.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 516 kB
  • sloc: python: 1,288; makefile: 8; sh: 5
file content (23 lines) | stat: -rw-r--r-- 517 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# pylint: disable=W0621
"""Asynchronous Python client for Elgato Lights."""

import asyncio

from elgato import Elgato


async def main() -> None:
    """Show example of programmatically change the display name of a Elgato Light."""
    async with Elgato("elgato-key-light.local") as elgato:
        # Current name
        await elgato.info()

        # Change the name
        await elgato.display_name("New name")

        # New name
        await elgato.info()


if __name__ == "__main__":
    asyncio.run(main())