28.05.2024, 07:43
I have a scrtip like this for each tag. Some addresses have up to 3 labels.
x = grp.getvalue('2/3/2')
y = grp.getvalue('2/3/4')
z = grp.getvalue('2/3/6')
if x == true or y == true or z == true then
grp.write('2/3/100', true)
else
grp.write('2/3/100', false)
end
I have verified the knx traffic with the ets and when I give a general off/on it executes all the actions only once, it does not stay in a loop with any address
x = grp.getvalue('2/3/2')
y = grp.getvalue('2/3/4')
z = grp.getvalue('2/3/6')
if x == true or y == true or z == true then
grp.write('2/3/100', true)
else
grp.write('2/3/100', false)
end
I have verified the knx traffic with the ets and when I give a general off/on it executes all the actions only once, it does not stay in a loop with any address