Switches
Overview
Switches are simple representations of binary actors. They mainly support switching on and off.
Interface
xknx
is the XKNX object.name
is the name of the object.group_address
is the KNX group address of the switch device. Used for sending.group_address_state
is the KNX group address of the switch state. Used for updating and reading state.respond_to_read
ifTrue
GroupValueRead requests to thegroup_address
are answered. Defaults toFalse
sync_state
defines if and how often the value should be actively read from the bus. IfFalse
no GroupValueRead telegrams will be sent to its group address. Defaults toTrue
invert
inverts the payload so state “on” is represented by 0 on bus and “off” by 1. Defaults toFalse
reset_after
may be used to reset the switch toOFF
again after given time in sec. Defaults toNone
device_updated_cb
Callback for each update.
Example
switch = Switch(xknx, 'TestOutlet', group_address='1/2/3')
xknx.devices.async_add(switch)
# Accessing switch via xknx.devices
await xknx.devices['TestOutlet'].set_on()
# Switching switch on
await switch.set_on()
# Switching switch off
await switch.set_off()
# Accessing state
print(switch.state)
# Requesting state via KNX GroupValueRead
await switch.sync(wait_for_result=True)