This is a very easy project for starters - a continuity and improvement from the initial project Skull 8x8 LED matrix
The Matrix used in this project was a 1088bs led matrix
The idea is quite simple:
1. We have a row with the corresponding pin values
2. We have a column with the corresponding pin values
3. We have our matrix with 0 & 1 - 0 for LED OFF, 1 for LED ON
4. In the setup phase we set the pin mode and our pattern
5. Finally we display it
The code contains 3 shapes(heart, angry robot, and squares) - all shown in the main image of the project.
You can create YOUR OWN SHAPE super easily:1. Copy-paste one of the existing matrixes e.g. angryRobot and change the LED values
2. Change the name of the matrix with your freshly created matrix here:
void setupMatrix(){
...
bool v = yourNameHere[x][y];
...
}
Note: Before wiring up the LED 8x8 matrix with the Arduino Uno, bear in mind that the pins are numbered as per the following:
1-8(left to right) -> side with the knob(picture below)
16-9(left to right) -> side without the knob
Comments