This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

3 Lightning objects
#1
Hi!

In my living room i have 3 zones of light, each one has it own knx adress.
how can i make an object to control all 3 of them simoultaneously? i have made a scene, with a value of eg 160 on each, so i can turn it on to a predefined value.  but is it possible to have 1 dimming controller to control all 3 togeher?
Reply
#2
Create a virtual object with the same data type, then attach an event script to it (change 1/1/1, 1/1/2, 1/1/3 to your light objects):
Code:
value = event.getvalue()
grp.write('1/1/1', value)
grp.write('1/1/2', value)
grp.write('1/1/3', value)
Reply
#3
Thanx, that was easy! Smile Smile
Reply


Forum Jump: