- LEDBoard with 4x2 LEDs
- pixel pitch: 20mm x 5mm
- LED: Rohm MSL0402RGB (1.8x1.6x0.5mm RGB)
- Driver: TI TLC5971 (16bit dimming, constant current driver)
compatible to LEDBoard_4x6_p20x5
WIP
- design schematics
- layout pcb
- order pcbs
- order parts
- solder boards
- test
- update documentation
there are groups of 4 LEDs that are controlled by one TLC5971.
every controller chip has 12 ConstantCurrent outputs.
so every LED is controllable individual.
you need to create a mapping to linearize the order:
TODO: test & check if this table is correct
0 | 1 | 2 | 3 | |
---|---|---|---|---|
0 | IC1 LED1 | IC1 LED2 | IC2 LED1 | IC2 LED2 |
1 | IC1 LED3 | IC1 LED4 | IC2 LED3 | IC2 LED4 |
const uint8_t channel_position_map[2][4] = {
{ 0, 1, 4, 5},
{ 2, 3, 6, 7},
};
- PCB size: ?x?x1,6mm
- pixel-pitch: 20x5mm
- 3.8V..5.5V
- <= ??A (maximum)
for arduino you can use ulrichstern/Tlc59711
for other things have a look at LEDBoard_4x4_16bit
all files in LEDBoard_4x2_p20x5
by
Stefan Krüger (s-light)
are licensed under a
Creative Commons Attribution 4.0 International License
.
all software parts/files are licensed under MIT.