Controlling LED Matrix Array With Arduino Uno (Arduino Powered Robot Face)

28K17944

Intro: Controlling LED Matrix Array With Arduino Uno (Arduino Powered Robot Face)

This instructable shows how to control an array of 8x8 LED matrices using an Arduino Uno. This guide might be used to create a simple (and relatively cheap display) for your own projects. This way you might display letters, numbers or custom animations.


A 5 matrices array used in one of our robot projects ("Robô da Alegria") is used as an example to ilustrate this technology. You might found more about this project in the following links:

https://www.instructables.com/id/Joy-Robot-Rob%C3%B4-Da-Alegria-Open-Source-3D-Printed-A/

https://hackaday.io/project/12873-rob-da-alegria-joy-robot

https://github.com/ferauche/RoboAlegria

https://www.facebook.com/robodaalegria/

Special thanks to the other team members involved in the above mentioned project, responsible for the first version of the code presented in this tutorial:
Thiago Farauche
Diego Augustus
Yhan Christian

STEP 1: Components

The following components were used in this project:

  • Arduino Uno (buy)
  • 8x8 LED matrix array with MAX7219 driver (x5) (buy)
  • Female-to-female jumper wires (4 jumpers of 5 cables each)
  • Male-to-famale jumper wires (1 jumper of 5 cables)
  • 2mm acrylic sheet (optional for fixation of the components)
  • M2 x 10 mm bolts (x20) (optional for fixation of the components)
  • M2 x 1,5 mm nuts (x20) (optional for fixation of the components)
  • A computer (for compiling and uploading Arduino code)
  • Creativity

Notice that you'll need two types of jumpers: female-to-female for the connection between the matrices and a male-to-female for the connection of the firts matrix to the Arduino.

The number of components may vary according to the structure you have in mind.

STEP 2: Assembly

Connect all the componets according to the schematic. You'll need some jumper wires to connect the first matrix to the Arduino, and each matrix to the next one on the array.

Arduino Pinout:

  • Arduino digital pin 13 = DIN of the first display
  • Arduino digital pin 12 = CLK of the fist display
  • Arduino digital pin 11 = CS of the first display
  • Arduino 5V pin = Vcc of the first display
  • Arduino GND pin = Gnd pin of the first display

You might also want to arrange each display in a given position. For that you might use a acrilic sheet, some bolts and nuts (four for each display) and place each component in position.

No tool is needed to assemble the circuit, but you will need a screwdriver or sharp tool if you wish attach the displays to a surface with some bolts and nuts. In our example, five displays were placed in a face pattern (two eyes and a mouth).

Plug the USB cable to the Arduino Uno board and proceed to the next step.

STEP 3: Coding

With the latest Arduino IDE version installed, add the LedControl.h library, which is used to control the LEDs.

Download, compile and upload Arduino the code, which is divided in 4 parts:
1. Definition of the eyes and mouth: each eye is configured and a 8-byte array. The mouths are defined as a 24-byte array;
2. Setup: configure displays and start communication;
3. Main: wait for serial communication commands and choose which face will be displayed;
4. Auxiliary functions: functions for setting eyes' and mouth's displays.

setRow function was used to set each row of the LED display. It was used instead of setColumn because it runs eight times faster! This way, the drawings for each display have to be declared rotated 90 degrees counter-clockwise.

setIntensity was used to limit LEDs brightness. It was set as 1 (in a scale from 0 to 15) in order to reduce the power consumption of the modules to a level aceptable by the USB port.

STEP 4: Usage

After the upload keep the Arduino connected to the USB port of your computer and open the Serial Monitor.
The code is programmed to display a set of emoticons on the LED face, depending on the message received by the serial port.
The following commands were configured:

For the eyes

  • : (normal eyes)
  • ; (blink)
  • 8 (spooky eyes)

For the mouth:

  • ) (happy)
  • | (neutral)
  • ( (sad)
  • D or d (very happy)
  • O or o (surprised)
  • P or p (tongue out)

Type a pair of characters (one for the eyes and other for the mouth) in the serial monitor, press enter and the displays will be updated according to your command.

You might change the drawings (add new faces for instance) or change the control method (including a bluetooth or wi-fi interface), according to your needs.

Have fun!

31 Comments

i made this led matrix face with the kids at work...
how do we make the animated eyes (blinking ones ?? )

thanks

It seems like no one has answered your question
Hello sir, I made this project, but I connected it correctly according to your code and wiring Arduin Nano diagram, LED dot matrix, there is no display, please help, thank you
I noticed that the USB needs to be connected to the computer serial port, open the Arduino IDE serial port, and enter the specified symbol before it is finally displayed. My problem has been solved. I thank you sir for publishing such an interesting project.

(I am temporarily using this FC16 MAX7219 4-in-1 LED display for testing)
What is done with the FLPMR9JIRKFL3VQ.FZZ
Not sure if I understood your question. Could you please clarify?
Lo que quiere decir es que en ese paso tenemos que descargarlo ese para que es ?
Hi there. This .fzz file is a Fritzing file. It displays the diagram on how to connect the LEDs to the Arduino.
The conde you should upload to the Arduino is the LEDdisplay.ino file you can find in Step 3.
Please verify.
buenas Estoy haciendo ese proyecto pero tengo problemas espero me ayude primera ya cargue el programa a la placa ya conecte todas las matrices las 5 pero no enciende ninguno tambien la libreria esa q muestra la imagen es que ya la inclui pero no prende ninguno yo use el codigo FEGF6QQIRKFL5XL.ino es ese o me equivoco de codigo EN donde dice include estan la led control pero los dejo esas 2 o no por q la que descargue fue la que aparece en color anaranjado
Still working on the bigger robot project and troubleshooting my LED face matrices. I see this guidance in your instructions:
  • Arduino digital pin 11 = CS of the first display....Isn't CS actually connected to digital pin 10 since there is a zero "0" digital pin to account for?
relaque is done with the FLPMR9JIRKFL3VQ.FZZ
hello IgorF2,
im getting fatal error, what to do about it

Hi there,

Can you give me additional information? Did you add the libraries, and chose the right Arduino board before compiling and uploading the code?

Boa! Colocando um receptor Bluetooth seria um upgrade legal também.

hi, I made one of these and am now wondering if there is any more information on programming it. Any links or even books I could purchase that would help would be great! Thanks!!

I mainly need help with how I would go about changing the code to use different faces, and have it on a change mode button to switch them.

Let me see if I understood correctly: you want to design some new faces and switch them by pressing a physical push buttons? If that's the case, I can try to help you.
Regarding your other comment, there is a lot of books and tutorials available online. Most of the times you can find the solution to your problems on online forums as well. You can also learn a lot from the examples available on Arduino IDE.

yes, on my standalone atmega328 board I have a button connected to pin #4 as a 'switch mode' button. I have all my boards assembled and connected, just need to get the atmega328 programmed. I don't have much experience with arduino, I'll be sure to look at the examples on arduino ide. Thanks!!!

More Comments