SorX14 / dali_master

DALI Master Particle library for use with LED-Warrior-14

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Broadcast dimming

hermanndererdmann opened this issue · comments

how is it possible to send a broadcast command for dimming all the lights?

You should be able to do this with (reference: http://www.rayzig.com/manual/rayzig.html?DALIaddresssettingexplained.html):

up
dali.transmitCommand(BROADCAST_C, 0b00000001);

down
dali.transmitCommand(BROADCAST_C, 0b00000010);

step up
dali.transmitCommand(BROADCAST_C, 0b00000011);

step down
dali.transmitCommand(BROADCAST_C, 0b00000100);

Not sure what the difference between step up/down and up/down is, but that should do it.