3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

64 pixel RGB LED Display - Another Arduino Clone

64 pixel RGB LED Display - Another Arduino Clone
«
  • matrix_boxed.jpg
  • matrix_prototype.jpg
  • matrix_prototype_LED.jpg
This display is based on an 8x8 RGB LED Matrix. For testing purposes it was connected to a standard Arduino board (Diecimila) using 4 shift registers. After getting it to work I permatized it on a fabbed PCB. The shift registers are 8-bit wide and are easily interfaced with the SPI protocol. Pulse width modulation is used to mix the colors, more on that later. Part of the MCU`s RAM is used as a framebuffer to hold the image. The video RAM is parsed by an interrupt routine in the background, so the user can do other useful things like talking to a PC, read buttons and potentiometers.



More information about "Arduino": www.arduino.cc
 
Remove these adsRemove these ads by Signing Up
 

Step 1Pulse width modulation for mixing colors

Pulse width modulation for mixing colors
Pulse width modu - WHAT ?

Pulse width modulation essentially is turning the power fed to an electrical device ON and OFF pretty quickly. The usable power results from the mathematical average of the square-wave function taken over the interval of one period. The longer the function stays in the ON position, the more power you get. PWM has the same effect on the brightness of LEDs as a dimmer on AC lights.

The task ahead is to individually control the brightness of 64 RGB LEDS ( = 192 single LEDs ! ) in a cheap and easy way, so one can get the whole spectrum of colors. Preferably there should be no flickering or other disturbing effects. The nonlinear perception of brightness exhibited by the human eye will not be taken into account here ( e.g. the difference between 10% and 20% brightness seems "bigger" than between 90% and 100% ).

Image (1) illustrates the working principle of the PWM algorithm. Say the code is given a value of 7 for the brightness of LED(0,0). Furthermore it knows there is a maximum of N steps in brightness. The code runs N loops for all possible levels of brightness and all necessary loops to service every single LED in all rows. In case the loop counter x in the brightness loop is smaller than 7, the LED is turned on. If it's larger than 7, the LED is turned off. Doing this very quickly for all LEDs, brightness levels and base colors (RGB), each LED can be individually adjusted to show the desired color.

Measurements with an oscilloscope have show that the display refresh code takes about 50% CPU time. The rest can be used to do serial communication with a PC, read buttons, talk to an RFID reader, send I2C data to other modules...
« Previous StepDownload PDFView All StepsNext Step »
107 comments
1-40 of 107next »
Oct 18, 2011. 12:15 AMangler says:
How is the total shift register (per chip) current kept below 70mA? Is this why you chose 270ohm?
Oct 18, 2011. 12:33 AMangler says:
Oops, just read the 1:8 duty cycle comment below.
Jul 27, 2011. 12:12 PMdevilmaycry says:
Hi Im currently doing GCSE ELECTRONICS KS4 AND i WANT make a project like your one but the problem is I want to make a Arduino Clone if u guys know any step by step instructable for beginners cos im new to micro controllers.MANY THANKS
Apr 26, 2011. 8:16 AMacotton1 says:
Hi madworm,

I have one week to make an RGB LED matrix for school. How did you wire your matrix up before you transferred it all to PCB? Due to time and money constraints, I can't have a PCB manufactured. Do you have photos, schematics, or diagrams?
Mar 30, 2011. 11:00 PMwmtt says:
Dear madworm.

Good news, I have success in having a working RGB matrix after following your codes and instruction.

May I know how do i modify the code if I want to run it on a stand alone ATMEGA168/328 but NOT from a Arduino?

Thank you again!
Feb 27, 2011. 10:20 PMwmtt says:
Dear Madworm, you are great! I saw your works elsewhere in the net and I think you are the one to answer my question.

I want to build a 5x5x5 LED matrix using RGB LED, I don't think I will have problem controlling each layer but I have 5 layers to control. I want to

1. mix colour (not just the 7 colours) of the RGB and
2. contol the brightness of each and single LED

so I think PWM (software by 74HC595 or by hardware TLC5940) is my answer.

Do you recommend

1. use the 74HC595 and mutliplex them for each layer (5 layers) or
2. Use TLC5940 and multiplex them for each layers?

I worry that by multiplexing the chips, I do not get enough refresh rate and give rise to LED flickering......

Looking forward to your kind assistance. Any information would be much appreciated!!!
Mar 6, 2011. 8:42 AMwmtt says:
Dear madworm

Thanks for your kind reply. I have already received the 5947 samples from Ti and will give it a try. But exactly do i multiplex it, can you give me some direction or exact way / scehmatic that I can follow.....

One more question, is your 64-pixel RGB matrix true color and not just the 7-color....?

Thank you once again.

WM Tang
Jan 2, 2011. 11:03 AMdunnos says:
When I read the last step I laughed, so hard. Seriously man, piggyback! awesome
Dec 2, 2010. 1:52 PMwilhelmmaybach says:
Hey Madworm, great Instructable, just one question: I understood most of the project, but I dont get the PWM part. I understand you use th 74 595 for selecting or controlling each led and each lead of the LEDs, (1 for red, 1 for green, 1 for blue, 1 for the anode or cathode) but, I dont get how you "connect" the PWM to each RGB, I understood very well what PWM is, but, for example, you have in your PWM a frecuency of 1 Hz (only example), and a PWM resolution of 8 bits, and duty cycle of 25%, ok, you want to connect the output of this PWM to any lead of any led, how do you achieve that?? how do you refresh or shift data into the shift registers to achieve that?? thanks for your response, and please be a little detailed, thanks a lot...:)
Nov 17, 2010. 11:30 PMVJHAL says:
I think I know how to get it to work with 8-bit pixel depth ... or maybe even 16-bit if you can handle a frame buffer that large. Can I get access to the driver code to try out my idea?

Also: Are the support boards for sale or can I get some made the same place you did?
Nov 18, 2010. 8:33 AMVJHAL says:
(Trying again, code got garbled the first time.)

OK I have the code. I am new to Arduino so I am having trouble seeing where the duration of a light pulse is set, but let me describe the idea here in words and pseudocode.

Instead of a countdown loop with "<" comparisons, we look at each bit of the brightness from MSB to LSB. (I will here assume 5 bit depth but the generalization should be obvious.)

In pseudocode (borrowing from the actual code):
#define __brightness_bits 5
#define __brightness_levels (1<< __brightness_bits)
...
for (bit=(__brightness_bits - 1);bit>=0;bit--)
{
mask = (1 << bit);
for (led = 0; led <= __max_led; led++) {
if (mask & brightness_red[row][led]) {
red &= ~(1< }
if (mask & brightness_green[row][led]) {
green &= ~(1< }
if(mask & brightness_blue[row][led]) {
blue &= ~(1< }
}
// Now here comes the key idea:
// Drive the LEDs for time proportional to (1<< bits)
drive_LED_array_for_time(mask);
}

The number of different times the LEDs get driven here is proportional to __brightness_bits, not 2 to that power, so in this case 5 (not 32). It scales nicely, linearly instead of exponentially. The remaining problem is simply how to drive the LEDs for a variable amount of time. This might be easy for you, but I need to understand the Arduino interrupt system first, which will take me a while.

Does this make sense?
Nov 21, 2010. 1:11 PMVJHAL says:
I think this should be pretty easy once I get up the learning curve. It is possible to set an Arduino up so that a timer drives PWM directly without burning CPU cycles; see for example the audio driver at: http://www.arduino.cc/playground/Code/PCMAudio
I think this is what you meant by "off-load this task to one of the timers in PWM mode". So the right SW architecture here is to use one timer in PWM mode just for display on time. Within each frame, you fire off the PWM timer in __brightness_bits groups * __rows rows/group with a different timer setting for each group, but you don't need to sit and loop inside the interrupts and waste a ton of CPU time. Just load the display bits and the timer and then exit: "Fire and forget." :-) You do of course have to know whether it's finished so you can fire off the next one, but that can either be done off the timer interrupt, or, less precisely, just as part of your main loop where you are polling buttons or whatever else you do in the unused CPU cycles. Assuming the minimum pulse width is one clock cycle, the total driving time is still at least __max_brightness clock cycles plus overhead. So we are constrained by
    frame_rate * total_driving_time < CPU_clock_speed
so assuming 16 MHz CPU and 1000 cycles overhead per depth-bit per frame (125 cycles per row display) we get theoretical max frame rates of roughly:

    4-bits => 3984 Hz (16000000 / (4*1000 + 16))
    5-bits => 3179 Hz (16000000 / (5*1000 + 32))
    6-bits => 2638 Hz (16000000 / (6*1000 + 64))
    7-bits => 2244 Hz (16000000 / (7*1000 + 128))
    8-bits => 1937 Hz (16000000 / (8*1000 + 256))
    9-bits => 1682 Hz (16000000 / (9*1000 + 512))
   10-bits => 1451 Hz (16000000 / (10*1000 + 1024))
   11-bits => 1226 Hz (16000000 / (11*1000 + 2048))
   12-bits => 994 Hz (16000000 / (12*1000 + 4096))
   13-bits => 755 Hz (16000000 / (13*1000 + 8192))
   14-bits => 526 Hz (16000000 / (14*1000 + 16384))
   15-bits => 334 Hz (16000000 / (15*1000 + 32768))
   16-bits => 196 Hz (16000000 / (16*1000 + 65536))
   17-bits => 108 Hz (16000000 / (17*1000 + 131072))
   18-bits => 57 Hz (16000000 / (18*1000 + 262144))
   19-bits => 29 Hz (16000000 / (19*1000 + 524288))
   20-bits => 14 Hz (16000000 / (20*1000 + 1048576))

Note that for under 14 bits, the overhead is most of the time, while for 15 and over, the displaying time dominates. But anyway it seems like 16-bit pixel depth should be achievable at completely flicker-free frame rates (if we have room for the double-size frame buffer). Even assuming the overhead doubles for 9-16 bits, we still get 16-bits => 164 Hz. 8 bits should be easy. One could either stick to a fixed frame rate (using the other timer) or just let this run as fast as it will go for maximum brightness (but with possible variations in brightness if the timing varies due to other loads). With this architecture the CPU overhead at 5-bit depth probably drops from 50% to around 1%. Give me a few days to receive the Arduino Uno I just ordered and a week to play around with it and I'll have code for you.
Nov 19, 2010. 10:50 PMVJHAL says:
I need to order an Arduino first I think. As far as you know, will your board work with the Uno?

I don't think it's zero-sum, I think it's a clear win, but the proof would of course be running code. It might be as simple as changing the how-long-to-drive-a-single-row constant to be a variable.

A free PCB would be lovely.
Nov 19, 2010. 1:42 AMwareneutron says:
that' an tv
Aug 16, 2010. 3:53 AMJawn says:
I should work this into a game of life algorithm.
Jul 15, 2010. 9:21 PMxense says:
gg
May 5, 2010. 12:30 PM8bit says:
Is there any visible flicker? 
May 5, 2010. 9:06 PM8bit says:
Thanks. That's good news. I wasn't sure if that method of pwm would be fast enough for the arduino to make a good illusion. I was hoping the slight flicker on the video was due to framerate differences. How much wiggle room do you think is left for addons like polling extra buttons or adding extra functions?
Oct 17, 2009. 3:56 PMkevindk92 says:
Hello,
what is the function of P1, P4 and P5?

(I love the project!)
Feb 7, 2012. 10:17 AMkevindk92 says:
thank you!

I've another question:
your last shift register IC5 needs to source over 200mA/port?
in step 2 of this instructable you said:
Each port can source or sink about 25mA of current. The total current per chip sinked or sourced should not exceed 70mA.
why aren't you using a ULN2803 instead?

(sorry for my bad english (Belgium))
Oct 17, 2009. 11:59 AMReCreate says:
I got another animation for you. :D
Its allot better than the previous, Its 30 Frames, Can you do it?
Oct 17, 2009. 12:34 PMReCreate says:
:D Thanks, If you want, i could pack it into a Gif if you want.
Oct 18, 2009. 4:01 PMReCreate says:
Oh ok...
1-40 of 107next »

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
26
Followers
2
Author:madworm
Slightly Dorky High Nerd