Charlieplexed Row of LED Lights, for the Arduino

52K13439

Intro: Charlieplexed Row of LED Lights, for the Arduino

 This is my instructable on charlieplexing a LED row/string with the arduino. I noticed that there weren't many instructables on charlieplexing using an arduino, so i made this. I tried to keep the project simple, but that didn't work very well. The soldering is complex, I wouldn't recommend this as a first time soldering project.

Here's some background on charlieplexing: en.wikipedia.org/wiki/Charlieplexing

I took about 80 pictures & not all of them made it into the main steps, but you can find them in step 9: Extra Pictures

If you have any comments, questions &/or suggestions please ask them!



STEP 1: Parts List:

Parts:
- 12 LED's; I'm using some 3 mm Red LED's
- 4, 270 Ohm resistors; You can use other values as well
- Perfboard/Veroboard; I used a piece 27 holes x 5 holes
- Wire; I used some 26 gauge, solid core wire
- Header pins (optional)
- Arduino

Tools:
- Soldering Iron
- Hot glue gun (optional)
- Helping hand (optional)

STEP 2: Solder the Anodes of the LED's

There's not much to say about the next few steps, but there's a few main points I'll mention.
- The LED's anodes are soldered in groups of 3
- Make sure the 4 groups don't get joined together, but stay separate

The wires that connect the 4 groups are kind of shaped like a L.


STEP 3: Bend the Cathodes

Main Points:
- You should end up with 4 different rows
- Make sure each of the the 4 rows contain only 3 connections to the cathodes & only one from each group of LED

STEP 4: Solder the Cathodes

Main Points:
Not much to say here just solder the 4 rows & make sure to avoid any bridges in the wires. You should have 4 rows that have only 3 connections to it, one from each group with one group not attached. I tried to make the schematic as close to the wiring as possible, so that might make what I'm talking about a little easier to understand. It's is the last picture on this step.

STEP 5: Install Resistors

This is a little confusing. Hope I explained it well enough. There are more pictures of this in step 9.

Resistor end connections:
1) One end connected to row 1. The other to group 4
2) One end connected to row 2. The other to group 3
3) One end connected to row 4. The other to group 2
4) One end connected to row 3. The other to group 1

STEP 6: Add the Control Wires

This is probably one of the easiest steps! All you are doing is soldering wires to the 4 groups.

I used some pieces of wire about 6 in long. They don't have to be different colors but it can be helpful if anything goes wrong & you need to debug the circuit. You don't need some header pins, but if you want some feel free to use them.

STEP 7: Coding the Arduino

Here's some basic steps to program your arduino.

1) Download the source code from below
2) Open the file in the Arduino IDE
3) Press the "Upload to I/O Board" button
4) Once the program is uploaded it will start running

Note:You may need to change a few things in the "const int ledPins[12][2] ={" array if the led's turn on, out of order.


I tried to add a good amount of comments to the code, but if you have any questions, please ask them.

STEP 8: Have Fun!!!

This shouldn't be to hard, but it might be

If you have any comments, questions &/or suggestions please ask them!


STEP 9: Extra Pictures

Well, I'm not sure if I when a little overboard with the pictures, But here's the rest of the pictures if you need something clarified. If you have any questions feel free to ask them.

Pictures 1-9: Installing the LED's
Pictures 10-13: Bending the cathodes
Pictures 14-18: soldering the cathodes
Pictures 19-20: Installing the resistors
Pictures 21-23: Installing the control wires

38 Comments

Found this to be a very useful instructable, although I found the diagram a little hard to follow. I had a crack at a version myself and came up with the following. I've colour coded the pin outs which has helped me with visualising
Charlieplexing.
My plan is to have play with the code to see if I can improve the bounce of the larson, and perhaps port it to an ATTiny rather than monopolising an Arduino!
Great instructable by the way. Having a look at your new ones now!
Your schematic is backward from the instructable. You have pin 1 going to LED1, LED2, LED3 and the instructable has pin 4 going to LED1, LED2, LED3. Pin 2, pin 3 and pin 4 of the Arduino are also flipped (i.e. 1 to 4, 2 to 3, 3 to 2, and 4 to 1).

Additionally, you both use pin 1, 2, 3, 4 in your schematic and then use 0, 1, 2, 3 in the code.

Lastly, neither of these schematic allow the program to work in all three modes.

Am I missing something or was this just a very poor example of charlieplexing. It is complicated enough without getting contradicting info.
The schematic you've commented on and the instructable have different authors, hence the differences. I went away to try to get my head around charlieplexing and that's what I came up with independently and as it helped me understand the concept, so I thought I'd share it. It was my first attempt and I've improved it since. With the new one below. The pins are labelled ABCD in this version...

The instructable is a really good example of charlieplexing and helped me a lot. It's not the only resource I used to understand the concept.

Best image scheme. I did not find 5 pin same scheme, can you help me?

The schematic above is very well done. Congrats!

i done this by using Arduino and 10 LEDs

watch Video : https://www.youtube.com/watch?edit=vd&v=jDdvyJ55Z2s

I'm connecting led strips instead of led's. For number 1 strip pin configs are pin1 high and pin2 low and for 2nd strip, pin2 high and pin1 low. These two pins are clashing with each other. Can anyone suggest me the way.

In file included from sketch_apr27a.ino:1:0:

sketch_apr27a.ino:48:21: error: variable 'displays' must be const in order to be put into read-only section by means of '__attribute__((progmem))'

Fout bij compileren.

I googled the message and found a fix here: http://forum.arduino.cc/index.php?topic=254424.0

In front of this one line

byte displays[][12] PROGMEM ={...

add 'const'.

const byte displays[][12] PROGMEM ={...

It compiled and was able to be sent to the Arduino. Now, my LEDs are out of order, but, I'm making progress! =)

pretty good to use pins as input for a "no HIGH/LOW" value.
Are the resistors there to protect the LEDs? If the arduino is using around 3 volts then can we skip them? I made a cylon eye scanner that works fine with no resistors. I'm using blueish white xmas light LEDs, so they might take higher voltage anyway.
I know this question is ancient by now but just in case some one else is looking at this tutorial I'll answer it.

The Arduino uses 5V not 3 so you do need the resisters.

Your christmas tree leds either have resistors in them somehow, are a higher voltage or... Shrug, you got luck somehow...
Are the resistors that important to led's? ive been using mine for simple light-up projects with an arduino uno and havent hade any problems. Either way if it did start smoking i think i would stay it was part of the design.
the problem with a burnt diode is that is will get closed "XOR" opened circuit, this in charlieplexing would be veeeeerey painful, because you will get some sequences to light o not light completely, and unles you are using high brightness LED (wich are transparent so you can sometimes identify a burnt one just by looking at it and seeinga a black spot where anode and cathode meet) it wil be difficult to find out wich one is the defective LED. And charlieplexing is intended for HIGH quantities of "matrix points" and they end up being a HIGH quantity of LEDs to check in case any of'em fails. So use resistors for good practice.
Giving too much voltage and/or amperage to any electronic can kill it. You do not always need a resistor though, it depends entirely on what the voltage and amperage rating on the LEDs are, whether they are connected in series or parallel and what voltage your supply is.
i am not able to download the code... it is downloading as .tmp format and not as .pde
Mine did the same thing. Just re-name .tmp to .pde
How could I do this with 22 LED's?
More Comments