Posts: 82
Threads: 29
Joined: Jul 2015
Reputation:
2
Hi!
I have several lights I would like to dimm at the same time with the same button. Each light has a KNX dimming object assigned to it (4/1/1 and 4/1/2). Can I create a new dimming object and script it in such a way as to dimm the "real" objects? Or am I misunderstanding something?
Cheers!
Posts: 4643
Threads: 24
Joined: Aug 2017
Reputation:
207
Hi
Why don't you just create new knx group for all of them?
BR
------------------------------
Ctrl+F5
Posts: 82
Threads: 29
Joined: Jul 2015
Reputation:
2
I guess that's where my brain is not helping me. I have a group (4/1/3) that should dimm both, but how do I tell the dali balast (dev 1 and 2), that are linked to 4/1/1 and 4/1/2 respectively that when 4/1/3 is dimming, they should, too?
Posts: 4643
Threads: 24
Joined: Aug 2017
Reputation:
207
Do you use LM dali or external KNX/DALI ?
------------------------------
Ctrl+F5
Posts: 4643
Threads: 24
Joined: Aug 2017
Reputation:
207
The easiest is to link dimming object to the same group then they will work together. Do you want to also control them separately?
------------------------------
Ctrl+F5
Posts: 4643
Threads: 24
Joined: Aug 2017
Reputation:
207
Then you have 2 options:
1. Technically correct way - Create DALI group and then control them via script. Unfortunately our tool still do not allow to create grouping and you would have to use an external one.
2. Link them over KNX via simple script like this
Code:
value = event.getvalue()
grp.update('Dali Internal - 1 4-bit dimming', value)
KNX is much faster than DALI so it should work flawlessly, specially that we just use IP command here.
BR
------------------------------
Ctrl+F5
Posts: 4643
Threads: 24
Joined: Aug 2017
Reputation:
207
Yes you need new object let say 4/1/3 and create an event based script on it with your code.
------------------------------
Ctrl+F5
Posts: 82
Threads: 29
Joined: Jul 2015
Reputation:
2
works like a charm, thanks!!