Tiva Lab 03: Seven Segment Display

Objective

  • Learn how to use a seven-segment display
  • Learn how to use an array to store the predefined values

Required Reading Material

Background Information

In this lab, you will interface a seven-segment display to Tiva LaunchPad. The display counts from 0 ~ F and resets itself to zero. Before going further, let us first discuss seven-segment displays.

Seven Segment Display

If your embedded system only needs to display numbers, you can consider using a seven-segment display. The seven-segment display is a simple device. It has 8 LEDs (the decimal point is the 8th) and can be lit in different combinations to represent the Arabic numerals and some English characters.

The segments of a seven-segment display are referred to by the letters A to G, and an optional decimal point (an "eighth segment", referred to as DP) for the display of non--integer numbers.

7SegDisplay 01 s7SegDisplay 02 s

There are mainly two types of seven-segment displays available. In a simple LED package as shown in the figure above, typically all of the cathodes (negative terminals) or all of the anodes (positive terminals) of the segment LEDs are connected and brought out to a common pin; this is referred to as a "common cathode" or a "common anode" device. Hence, a 7-segment plus decimal point package will only require nine pins, though commercial products typically contain more pins, and/or places where pins would go, in order to match standard IC sockets.

In general, common anode displays are more popular than common cathode displays, since logic circuits can sink more current than they can source.

How to display a number on the seven-segment display?

Depending upon which character will be displayed, the particular set of LEDs is forward-biased.

Display a "0"
Common Cathode 0

To display the numerical digit "0" on the display as shown in the figure above, the LED segments corresponding to a, b, c, d, e, and f must be lit up.
For a common cathode display, these pins must be connected to power, and for a common anode display, these pins must be connected to the ground.

Display a "1"
Common Cathode 1

To display the numerical digit "1" on the display as shown in the figure above, the LED segments corresponding to b, and c must be lit up.
For a common cathode display, these pins must be connected to power, and for a common anode display, these pins must be connected to the ground.


Displaying Letters

7 segments Indicator

A single byte can encode the full state of a 7-segment display. The most popular bit encodings are gfedcba and abcdefg, where each letter represents a particular segment in the display. In the gfedcba representation, a byte value of 0x06 would (in a common anode circuit) light up segments 'c' and 'b', which would display a '1'.

Hexadecimal digits can be displayed on a seven-segment display. A combination of uppercase and lowercase letters is used for letters 'A' to 'F'; this is done in order to obtain a unique, unambiguous shape for each hexadecimal digit (otherwise, a capital 'D' would look identical to a '0' and a capital 'B' would look identical to an '8'). Also the digit '6' must be displayed with the top bar lit to avoid ambiguity with the lowercase letter 'b'.

The following table applies a common cathode seven-segment display device. If you are using a common anode, the values in the table must be inverted.

Table 1: Seven-Segment Display Lookup Table for Hexadecimal Encodings

Digit Display Individual Segments Illuminated
Port [7:0] Port [7:0]
dp g f e d c b a dp.g.f.e.d.c.b.a dp.a.b.c.d.e.f.g
0 SevenSegment 064 s 0 0 1 1 1 1 1 1 0x3F 0x7E
1 SevenSegment 007 s 0 0 0 0 0 1 1 0 0x06 0x30
2 SevenSegment 092 s
3 SevenSegment 080 s
4 SevenSegment 103 s
5 SevenSegment 110 s
6 SevenSegment 126 s
7 SevenSegment 008 s
8 SevenSegment 128 s
9 SevenSegment 112 s
A SevenSegment 120 s
B SevenSegment 125 s
C SevenSegment 058 s
D SevenSegment 095 s
E SevenSegment 122 s
F SevenSegment 114 s

When you connect seven segment displays in a circuit, a current limiting resistor must be wired in series with each display segment. Any resistor value between 100Ω and 1KΩ will work for the LED resistor. The lower resistance will result in a brighter segment. It is best to use resistors of the same value so all the segments light up evenly.

 

Required Components List

Resistor 64 220 Ω Resistor x 8
7SegDisplay 64 7-Segment Display x 1
breadboard s Breadboard x 1

 

Circuit / Schematic Diagram

The circuit diagram for connecting a common cathode seven-segment display to the TI Tiva microcontroller port is shown below. The microcontroller I/O pins source the current required for the segment LEDs. The current limiting resistors connected in series between the microcontroller pina and segment LEDs are 220ohm each. Segments a ~ g and dp are driven through GPIO output ports.

EK-TM4C123GXL LaunchPad

EK-TM4C123GXL LaunchPad

7SegDisplay 123G s

dp g f e d c b a Pins on 7-Seg Display
7 6 5 4 3 2 1 0 Data bit
PD7 PC7 PC6 PC5 PC4 PA4 PA3 PA2 GPIO Port/Pin

Pin configurations:

DevicePort.Pin Signal TypePCTLDirectionDrive Mode

 

 

Procedures

  1. Create a new folder under the EE3450 folder and name it Lab03_7SegDisplay.
  2. Launch the Keil μVisio and create a new project. Save the project to the folder you created in the previous step and set the project name to Lab03_7SegDisplay.
  3. Add MyDefines.h to the Source Group, then add the Common folder to the include paths which is under the "Options for Target" setting.

 

 

Wire a circuit for the 7-segment display on the breadboard with eight current limiting resistors, then connect wires to the TI Tiva board. Make sure the power is disconnected when wiring up your breadboard.

The predefined hexadecimal encoding values must be shifted to the corresponding bit to light up the correct segment LED on different Ports.

 

Example Source Code

 

 

 

Lab Experiments

Comment out the for-loop code in the main function inside the while-loop.

    while (1) {
        // Place your application code here
//        for (i = 0; i < sizeof(sevenSeg); i++) {
//            SegDisplay(ch & 0x0F);
//            ch++;
//            DelayMs(1000);
//        }

    }