arduino-dali
arduino-dali copied to clipboard
A timer-based DALI (Digital Addressable Lighting Interface) library for Arduino
Is it possible to enhance this lib to receive commands from the Dali bus? With this we could build a dali monitor or even own dali devices. I think a...
I added some functions to send broadcast arcs and cmds. I also added the feature to receive commands/responses like described in #6 . Example: ```C++ Dali.setCallback([](uint8_t *data, uint8_t len) ->...
The library works fine, but how can I send color commands according to IEC 62386-209 with Arduino? The example command is as follows: Address 0, r=0%, g=100%, b=keep, w=100% with...
This PullRequest adds some features im using a while now. - added defines to setup dali (see below) - support for rp2040, ESP32, ESP8266*, AVR* - supports externally called timer...
When you issue multiple commands in sequence like this: ``` Dali.sendCmd(0, DaliCmd::OFF); Dali.sendCmd(1, DaliCmd::OFF); Dali.sendCmd(2, DaliCmd::OFF); ``` only the last will get actually sent. I presume this is because the...
needed for waweshare Pico-DALI2 adapter