07.02.2017, 21:20
(This post was last modified: 07.02.2017, 21:25 by Erwin van der Zwart.)
Hi,
I assume your scenes are stored in your KNX actuators so try this:
Rookie info (: -> Make sure the byte object (in this sample '1/1/1') that is used for your scenes is created in the controller, otherwise this script won't send it to the bus.
BR,
Erwin
I assume your scenes are stored in your KNX actuators so try this:
Code:
grp.write('1/1/1', 0) -- call scene 1
os.sleep(3) -- wait a few seconds
grp.write('1/1/1', 2) -- call scene 3
Rookie info (: -> Make sure the byte object (in this sample '1/1/1') that is used for your scenes is created in the controller, otherwise this script won't send it to the bus.
BR,
Erwin