Running message display project for Christmas

Introduction

As Christmas is coming people have already lightened their houses. I thought of doing something different for this Christmas besides the festive Christmas lights. I made a running message display using LEDs, and thought of sharing it with you. This is a very simple running message display project that displays the message ‘MERRY XMAS’, where each letter is created with 5mm diameter red-color LEDs. The 9 letters in the message are individually turned on or off through a PIC16F688 microcontroller’s I/O pins. Therefore, a variety of display patterns can be generated through the software inside the microcontroller.

Christmas running message display

Theory

LED Math

The forward voltage of an LED depends on its type. If the LED is red, the forward voltage is usually between 1.7 – 2.1 V. For green and blue LEDs, this value is higher. An LED requires a resistor in series to limit the current in the LED to a safe value. Most 5mm LEDs operate close to their peak brightness at a drive current of 20 mA. In this project, I am driving my LEDs at 15 mA and they still glow pretty bright. So, all of my calculations are based for 15 mA current through the LEDs. I measured the forward voltage across my LEDs and they are about 1.95 V. Calculating the value of the series resistor for an LED is simple. Suppose, if you want to drive a LED through a 5 V power source, you need a resistor of value (5-1.95)V/15 mA = 203 ? to limit the current to 15 mA. The closest available resistor (on the higher end) is of 220 ?.

Now, let’s see how to make display letters with LEDs. The first letter of the message (MERRY XMAS) is shown below. 17 LEDs are used in creating the letter M. If you drive each LED through a 5V supply, you require 17 series resistors, and the current will sum up to 17×15 = 255 mA. If you add the current requirements of other letters in the message, the net current would go up to 2 A, which is quite a bit of current and you probably need a bigger heat sink for your voltage regulator. I didn’t want to do any of these. So I thought of doing it differently that would save me from soldering to many resistors and also lower the net current requirement of the project. How can I do that? Yes, you are right, by using higher supply voltage.

I still have my old printer’s external power supply that has that has 3 output pins for +15 V, +32 V, and Ground, and it can deliver current up to 800 mA. I thought of connecting LEDs in series and drive them through 32 V. This way I can connect at most 16 LEDs in series with only one current limiting resistor. So, here is how I arranged the 17 LEDs for the letter M. I can’t connect all of them in series as that would require more than 17×1.95 = 33.15V. So I connected the first 9 LEDs in series (cathode of one is connected to the anode of other) to form a chain. The remaining 8 LEDs are used to form another chain. For the first chain, the value of the series resistor would be,

R1 = (32.0 – 1.95 x 9) V/15 mA = 963 ?.

I used 1 K. Similarly, for the other chain of 8 LEDs, the estimated resistor value is R2 = 1.1 K. Now let’s compute the power dissipation in the resistors. The current through R1 is (32 – 1.95 x 9)V/1K = 14.45 mA. The power dissipation is 14.45 mA x 14.45 mA x 1000 ? = 0.21 Watts. Similarly, R2 will dissipate 0.24 Watts. So, the resistors with power rating 1/4 Watts will work fine. Next, by connecting the two anode terminals together and two cathodes together as shown above, completes the letter M. The anode terminal will be connected to 32 V supply and the cathode will be connected to the collector of a NPN transistor. The base of the NPN transistor will be driven through a PIC16F688 I/O pin with a base-current limiting resistor, whereas the emitter will be grounded. When the PIC16F688 I/O pin outputs logic high, the transistor is turned on and all the LEDs will glow and display M. This whole process is repeated for other letters in the message. The series resistor values will be calculated in exactly the same way by considering the number of LEDs in each of the chains formed. The table below shows the number of LEDs in my message letters with the number of chains and the series resistors I used.

Selecting transistor

Each transistor used in this project will have to sink at most 30 mA current (for letters with two series chains). If there is only one chain of LEDs, then it would have to sink only 15 mA. So, no special power transistor is required. But, the selected transistor must have junction breakdown voltage higher than 32 V, for both collector-emitter and collector-base terminals. The specification of a BC547 NPN transistor says the breakdown voltage is about 45 V, and so it is appropriate for this project. But I experienced problem with a couple of BC547 transistors that I had to replace. They just get turned on by default without applying any voltage to its base resistor. I don’t know the cause.

Soldering LEDs on a cardboard

I didn’t solder the LEDs on a prototyping circuit board to make the letters, that would be a lot of money. I rather took a 0.25″ cardboard and drilled holes where the legs of LEDs are inserted. The legs are bent on the backside of the cardboard and then soldered to form a chain of LEDs. This holds the LEDs fairly tight. In order to drill the equidistant holes, first I printed the letters with round circles on papers and sticked them on the board as shown below. The circles are 0.5″ apart.

Next, I drilled two holes inside each circle at about 4 mm distance apart so that I can insert the two legs of an LED. It’s a cardboard, so drilling was not so painful. It took me about 30 minutes to drill holes for all 134 LEDs.

After that, I took the paper out from the cardboard and inserted the LEDs. I bent the legs of the LEDs and soldered the appropriate terminals of adjacent LEDs to make the serial chains. I also soldered the resistors to each anode terminals of the chains.

Circuit Diagram

The circuit diagram is very simple. I am using my PIC16F688 breadboard module as the brain of this project. The figure below shows the pin RC0 is driving the first letter M. Rest of the letters also require similar transistor drivers that are controlled through other port pins of PIC16F688. The +5 V supply for the PIC microcontroller is derived from the +15 V power supply (note the printer power supply has two voltage output, +15 V and 32 V) using an LM7805 regulator IC.

PIC16F688 breadboard module inserted into the transistor driver board. The board gets +15 V and +32 V from the printer’s power supply.


PIC16F688 module controls the switching patterns of the letters


The circuit board is fixed on the backside of the cardboard using screws.

Software

Now it’s time to write the program for PIC16F688. I am demonstrating a simple display pattern that first switches all the letters on sequentially, then blinks the whole message twice, and finally shows the entire message for 2 sec. Then it repeats the sequence for ever. I wrote this program in C and compiled with MikroC Pro for PIC compiler from MikroElektronika.

/*
Project: Merry XMAS Running Message
Internal Clock @ 4MHz, MCLR Enabled, PWRT Enabled, WDT OFF
Copyright @ Rajendra Bhatt
Dec 4, 2010
*/
// Define letter connections.
// MERRY XMAS
 sbit M1 at RC0_bit;
 sbit E1 at RC1_bit;
 sbit RR1 at RC2_bit;
 sbit RR2 at RC3_bit;
 sbit Y1 at RC4_bit;
 sbit X1 at RC5_bit;
 sbit M2 at RA2_bit;
 sbit A1 at RA1_bit;
 sbit S1 at RA0_bit;
// End connection definition
void GetDelay(void){
 Delay_ms(200);
}
void main() {
 ANSEL = 0b00000000; //All I/O pins are configured as digital
 CMCON0 = 0x07 ; // Disbale comparators
 TRISC = 0b00000000; // PORTC All Outputs
 TRISA = 0b00000000; // PORTA All Outputs, Except RA3
 PORTA = 0x00;
 PORTC = 0x00;
 do {
 M1 = 1;
 GetDelay();
 E1 = 1;
 GetDelay();
 RR1 = 1;
 GetDelay();
 RR2 = 1;
 GetDelay();
 Y1 = 1;
 GetDelay();
 X1 = 1;
 GetDelay();
 M2 = 1;
 GetDelay();
 A1 = 1;
 GetDelay();
 S1 = 1;
 GetDelay();
 PORTC = 0x00;
 PORTA = 0x00;
 GetDelay();
 PORTC = 0xff;
 PORTA = 0xff;
 GetDelay();
 PORTC = 0x00;
 PORTA = 0x00;
 GetDelay();
 PORTC = 0xff;
 PORTA = 0xff;
 Delay_ms(1000); // Wait for 1 sec
 PORTC = 0x00;
 PORTA = 0x00;
 GetDelay();
 GetDelay();
 } while(1);     // Infinite Loop
}

Download the HEX File

Output

I have a video shoot of my running message display that I took with my digital camera. Have fun watching it.

I have fixed the display board behind the glass of my window. It looks really great during night time. The picture below is taken from the street in front of my house, which is about 50 feet away.

Here’s another version of this project without using a microcontroller.

Related Posts

28 comments

Leave a Reply to Giorgos Lazaridis Cancel reply

Your email address will not be published. Required fields are marked *