Difference between revisions of "Arduino Led Matrix 8x7 WS2811"

From cod3v
Line 24: Line 24:
=== Debugging ===
=== Debugging ===


<syntaxhighlighting lang="C">
<syntaxhighlight lang="C">
void setup() {
void setup() {
   Serial.begin(9600); // open the serial port at 9600 bps:
   Serial.begin(9600); // open the serial port at 9600 bps:
Line 30: Line 30:


Serial.print();
Serial.print();
</syntaxhighlighting>
</syntaxhighlight>

Revision as of 11:21, 30 July 2021

Introduction

Make a 7x8 led matrix using WS2811 led strips.

Theory

Building the box

Wiring

Be careful to wire +5V to +5V (I broke one led). Soldering the leds is manageable: add the solder to both the led connector and to the wire, the attach the wire to the led connector and warm it using the soldering iron.

Debugging

void setup() {
  Serial.begin(9600); // open the serial port at 9600 bps:
}

Serial.print();