Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Broadcast dimming #2

Open
hermanndererdmann opened this issue May 10, 2020 · 1 comment
Open

Broadcast dimming #2

hermanndererdmann opened this issue May 10, 2020 · 1 comment

Comments

@hermanndererdmann
Copy link

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

@SorX14
Copy link
Owner

SorX14 commented May 12, 2020

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants