Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
xknx/examples/example_light_state.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
23 lines (18 sloc)
636 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Example for reading the state from the KNX bus.""" | |
import asyncio | |
from xknx import XKNX | |
from xknx.devices import Light | |
async def main(): | |
"""Connect to KNX/IP bus and read the state of a Light device.""" | |
async with XKNX() as xknx: | |
light = Light( | |
xknx, | |
name="TestLight2", | |
group_address_switch="1/0/12", | |
group_address_brightness="1/0/14", | |
) | |
await light.set_brightness(80) | |
# Will do a GroupValueRead for both addresses and block until a result is received | |
await light.sync(wait_for_result=True) | |
print(light) | |
asyncio.run(main()) |