Devchan Arrays & Feedback (Newbie)
kyle.rodrigues
Posts: 12
Ok so here is my question. If i have a DEVCHAN set of lets say 4 channels.
DEVCHAN FB1[ ] = {{10001:1:1, 360}, {10001:1:1, 361},{10001:1:1, 362}, {10001:1:1, 363}}
When i do the following:
BUTTON_EVENT [FB1]
{
PUSH:
{
ON [FB1]
}
When any one of those buttons are pressed in the DEVCHAN, does it turn on all four channels in that devchan set or does it only send ON to the CHANNEL that was pushed?
and whats the best solution for writing feedback for buttons shared in a DEVCHAN set, if i dont want all to change there state to on at the same time ?.
DEVCHAN FB1[ ] = {{10001:1:1, 360}, {10001:1:1, 361},{10001:1:1, 362}, {10001:1:1, 363}}
When i do the following:
BUTTON_EVENT [FB1]
{
PUSH:
{
ON [FB1]
}
When any one of those buttons are pressed in the DEVCHAN, does it turn on all four channels in that devchan set or does it only send ON to the CHANNEL that was pushed?
and whats the best solution for writing feedback for buttons shared in a DEVCHAN set, if i dont want all to change there state to on at the same time ?.
0
Comments
If you are looking for mutually exclusive, you could do the following:
I think this should all function properly.
Hope it helps,
Jeff
Yes that is exactly what i was looking for, much appreciated !
this helped me with feedback on a matrix grid too.