11 hours ago
I installed the LM APK on a display and connected it to the LogicMachine. I have run into a major problem.
I have three DALI LED luminaires with short addresses A0, A1, and A2. The corresponding KNX switch object addresses are 1/1/1, 1/1/4, and 1/1/7.
I created a virtual KNX object 32/1/1 and attached the following event script to it:
In the visualization, I created a standard On/Off control using 32/1/1 as both the Control and Status object.
When I operate this control, it causes complete chaos on the DALI bus. It appears that the event script is executed dozens of times instead of just once. The ON/OFF commands are continuously sent to the three DALI luminaires and they never stop. The only time the commands stop is when the DALI bus eventually seems to lock up.
Have you seen this behavior before?
I have three DALI LED luminaires with short addresses A0, A1, and A2. The corresponding KNX switch object addresses are 1/1/1, 1/1/4, and 1/1/7.
I created a virtual KNX object 32/1/1 and attached the following event script to it:
Code:
value = event.getvalue()
grp.write('1/1/1', value)
grp.write('1/1/4', value)
grp.write('1/1/7', value)When I operate this control, it causes complete chaos on the DALI bus. It appears that the event script is executed dozens of times instead of just once. The ON/OFF commands are continuously sent to the three DALI luminaires and they never stop. The only time the commands stop is when the DALI bus eventually seems to lock up.
Have you seen this behavior before?