I don't get it with eventbased script. I want to trigger only when the KNX object is set to 1. But it is not triggered when it is set to 0. I can't find a way to do this in the settings.
If window is opened (not if it is closed) and front door is opened, then xyz....
(22.02.2019, 14:52)Daniel. Wrote: Hi
Tag your door and window object and then create event based script triggered by this tag then make script like that
Code:
1234567
window = grp.getvalue('window object')
door = grp.getvalue('door object')
if (windowanddoor) then--dosomething()end
thank you Daniel for your quick feedback.
I just wonder which KNX group address I use for the trigger?
so the trigger would also start the script when the door is closed. But the If does not execute anything.
Is this the basic procedure with the logic machine?
(22.02.2019, 14:52)Daniel. Wrote: Hi
Tag your door and window object and then create event based script triggered by this tag then make script like that
Code:
1234567
window = grp.getvalue('window object')
door = grp.getvalue('door object')
if (windowanddoor) then--dosomething()end
thank you Daniel for your quick feedback.
I just wonder which KNX group address I use for the trigger?
so the trigger would also start the script when the door is closed. But the If does not execute anything.
Is this the basic procedure with the logic machine?
Not KNX group only the TAG I asked you to create. This way script will run each time when window or the door group will receive telegram.