-
Notifications
You must be signed in to change notification settings - Fork 4
/
dump_loads.py
32 lines (24 loc) · 1.07 KB
/
dump_loads.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""Prints out the id, name, and level of each load in the Vantage controller."""
import argparse
import asyncio
import contextlib
import logging
from aiovantage import Vantage
# Grab connection info from command line arguments
parser = argparse.ArgumentParser(description="aiovantage example")
parser.add_argument("host", help="hostname of Vantage controller")
parser.add_argument("--username", help="username for Vantage controller")
parser.add_argument("--password", help="password for Vantage controller")
parser.add_argument("--debug", help="enable debug logging", action="store_true")
args = parser.parse_args()
async def main() -> None:
"""Run code example."""
if args.debug:
logging.basicConfig(level=logging.DEBUG)
# Connect to the Vantage controller
async with Vantage(args.host, args.username, args.password) as vantage:
# Print out the id, name, and level of each load
async for load in vantage.loads:
print(f"[{load.id}] '{load.name}' level={load.level}%")
with contextlib.suppress(KeyboardInterrupt):
asyncio.run(main())