How to Drive a 7 Segment LED Display with an Arduino
In this project, we will show how to drive a single 7 segment LED display with an arduino microcontroller.
A 7 Segment LED Display is an electronic device housing 8 individual LEDs.
Using this device, we can display all numerals and many alphabetical characters and many more types of symbols. The 7 segment LED is really a versatile display device.
For this project, we will write a program that uploads to an arduino board that will display the numerals 0-9.
The output is produced by turning on combinations of segments that represent the various numerals 0-9.
Components Needed
- Common Cathode 7 Segment LED Display
- Arduino
- 8 270Ω Resistors
- Jumper Wires
The 270Ω resistors attach to the 8 digital output pins connected to the 8 segments of the LED display. They limit current going to the individual LEDs, so that they don't
get burnt out from too much power.
To understand how this program works, let's first look at the makeup of a 7 segment LED
display.
The LED display, again, is made up of 8 individual LEDs, as shown above. The LEDs go in order of the alphabetical characters which you see. From first to last, the LEDs from 1-8 are a, b, c, d, e, f, g.
The decimal point would be the last pin.
To create a 0, we would have to light LEDs a,b,c,d,e,f. This would give us a zero. g would be left unlit. Thus, to create a 0 in code, it would be represented by B11111100.
To create a 1, we would have to light LEDs, b,c. All other LED would be left unlit. Thus, to create a 1 in code, it would be represented by B11000000.
To create a 2, we would have to light LEDs a,b,d,e,g. Thus, to create a 2 in code, it would be represented by B11011010.
To create a 3, we would have to light LEDs a,b,c,d,g. Thus, to create a 3 in code, it would be represented by B11110010.
To create a 4, we would have to light LEDs b,c,f,g. Thus, to create a 4 in code, it would be represented by B01100110.
To create a 5, we would have to light LEDS a,c,d,f,g. Thus, to create a 5 in code, it would be represented by B10110110.
To create a 6, we would have to light LEDs a,c,d,e,f,g. Thus, to create a 6 in code, it would be represented by B10111110.
To create a 7, we would have to light LEDs, a,b,c. Thus, to create a 7 in code, it would be represented by B11100000.
To create an 8, we would have to light LEDs a,b,c,d,e,f,g. Thus, to create an 8 in code, it would be represented by B11111110.
To create a 9, we would have to light LEDs, a,b,c,f,g.
Thus, to create a 9 in code, it would be represented by B11100110.
So now that you know how each numeral can be shown by deciding which LEDs to turn on, let's see how we will wire the 7 segment LED display to the arduino.
Before we can do that, we must know the pinout of the 7 segment LED display. In our circuit, we will use a common cathode LED display. This is a 7 segment LED display in which all grounds of the LEDs are tied together.
The pinout of the common cathode LED display is shown below.
Common Cathode 7 Segment LED Display Pinout
These are the 2 pinout diagrams of the common cathode 7 segment LED display. Some have the pins on the sides (laterally). Others have the pins on the top and bottom. Thus, we show both pinout diagrams.
You will need this to know how to hook up the display to the arduino board.
Note- Even though many different types of 7 segment LED displays follow the above schematics, it is not guaranteed. The best way to know the connections is to obtain
the datasheet for the LED display in use or to buzz it out by connecting power to each of the pins to see which lights up. If you don't get the connections right, the circuit will not produce
the output of showing numerals 0-9. So it is very important to know which pins are which.
Circuit Schematic
The schematic for the 7 segment LED display connected to the arduino is shown below.
The connections are fairly simple. We utilize 8 digital pins of the arduino and the ground terminal.
The written form of the above schematic is shown below for the pin connections.
7 Segment LED Display Pin | Connects to Arduino Digital Terminal ... |
a | 2 |
b | 3 |
c | 4 |
d | 6 |
e | 7 |
f | 9 |
g | 8 |
DP | 5 |
Note that the common cathode terminals connect to the ground terminal of the arduino.
Code
const byte numeral[11]= {
B11111100,
B01100000,
B11011010,
B11110010,
B01100110,
B10110110,
B00111110,
B11100000,
B11111110,
B11100110,
B00000000,
};
const int segmentPins[8]= { 5,8,9,7,6,4,3,2 };
void setup()
{
for (int i=0; i < 8; i++)
{
pinMode(segmentPins[i], OUTPUT);
}
}
void loop()
{
for (int i=0; i <=10; i++)
{
showDigit(i);
delay(1000);
}
delay(2000);
}
void showDigit (int number)
{
boolean isBitSet;
for (int segment=1; segment < 8; segment++)
{
isBitSet= bitRead(numeral[number], segment);
digitalWrite(segmentPins[segment], isBitSet);
}
}
The first block of code creates a byte named numeral which store all the code needed to create the numbers 0-9 on the LED with a blank at the end. The 11 characters are 0-9 and a blank.
The second block of code creates a constant integer called segmentPins which assigns the pins on the arduino that the 7 segment display is hooked up to.
The third block of code declares all pins on the arduino that the 7 segment LED display is hooked up to as output.
The fourth block of code calls a function called showDigit() which is defined in the next block of code. This function shows the numerals 0-9 on the 7 segment LED display. In between each numeral, there is a 1 second delay, as shown in the line delay(1000). At the end of the loop when all numerals have been shown, there is a 2-second delay (delay(2000)).
The fifth block of code defines the function showDigit(). This displays the numbers defined in the constant byte numeral.
To see this circuit in action, watch the following video below.
Related Resources
How to Display any Character On a 7 Segment LED Display
How to Connect and Read a Keypad with an Arduino
How to Display Text on an HD44780 LCD Using an Arduino
How to Build a USB-powered Device
How to Build a DC Motor Circuit
How to Build a Speaker Circuit with Adjustable Volume
How to Build a Simple Microphone circuit
How to Build a Touch Sensor Circuit