Commit 0d441beca52a19e509873f5684f6969899e8162a
Committed by
GitHub
1 parent
e44ea54c
.
Showing
1 changed file
with
10 additions
and
7 deletions
README.md
| 1 | # DALI-arduino | 1 | # DALI-arduino |
| 2 | -DALI LED Lighting Interface | 2 | +DALI LED Lighting Interface. Control LED Drivers with a microcontroller. |
| 3 | 3 | ||
| 4 | -Control LED Drivers with a microcontroller. | 4 | +Core code in qqqDali.cpp and qqqDali.h does not depend on Arduino, can be used in any C++ project copying qqqDali_ATMega328.h by adding hardware specific code. |
| 5 | 5 | ||
| 6 | -Examples for Arduino ATMEGA328 included. | ||
| 7 | - | ||
| 8 | -Core code does not depend on Arduino, can be used in any C++ project by adding hardware specific code. | 6 | +Examples for Arduino ATMEGA328 included: |
| 7 | +- Dimmer: Dims all lamps up and down | ||
| 8 | +- Commissioning: Assign short addresses to lamps | ||
| 9 | +- Monitor: Monitor DALI bus data | ||
| 9 | 10 | ||
| 10 | Needs a DALI hardware interface such as Mikroe DALI click. Or use this very basic DALI interface design for your experiments. | 11 | Needs a DALI hardware interface such as Mikroe DALI click. Or use this very basic DALI interface design for your experiments. |
| 11 | 12 | ||
| @@ -24,8 +25,10 @@ Needs a DALI hardware interface such as Mikroe DALI click. Or use this very basi | @@ -24,8 +25,10 @@ Needs a DALI hardware interface such as Mikroe DALI click. Or use this very basi | ||
| 24 | |\ | 25 | |\ |
| 25 | V | 26 | V |
| 26 | | | 27 | | |
| 27 | - +----------------------<< DALI - | 28 | + GND >>----------------------+----------------------<< DALI - |
| 28 | ``` | 29 | ``` |
| 29 | - NOTE: For this interface, reverse the polarity of TX in the code. | 30 | + NOTES: |
| 31 | + - For this interface, reverse the polarity of TX in the code. | ||
| 32 | + - Might not work with all DALI components because of unmatched voltage levels. | ||
| 30 | 33 | ||
| 31 | 34 |