Turning ON all Outputs of Channels in a DEVCHAN
Greetings,
I have a DEVCHAN which contains a keypad button on each of multiple keypads. Is there a way to light up ALL of the keypad feedback LEDs in the DEVCHAN with one line of code?
ON [dcMY_DEVCHAN] or things similar do not work.
Thank you.
I have a DEVCHAN which contains a keypad button on each of multiple keypads. Is there a way to light up ALL of the keypad feedback LEDs in the DEVCHAN with one line of code?
ON [dcMY_DEVCHAN] or things similar do not work.
Thank you.
0
Comments
Hm, should work......
Are these channels some kind of mutually exclusive?
Could you post the affected code?
Thank you!
DEFINE_DEVICE dvRelais = 5001:4:0 dvPanel = 10001:1:0 DEFINE_VARIABLE DEVCHAN dcMyRelais[] = { { dvRelais,1 }, { dvRelais,2 }, { dvRelais,3 }, { dvRelais,4 } } DEFINE_EVENT BUTTON_EVENT[dvPanel,101] { PUSH: { ON[dcMyRelais] } RELEASE: { OFF[dcMyRelais] } }