Chapter 15 74HC595 & 7-Segment Display
In this chapter, we will introduce the 7-Segment Display.
Project 15.1 7-Segment Display.
We will use 74HC595 to control 7-segment display and make it display hexadecimal character “0-F”.
Component List
ESP32-WROVER x1
|
GPIO Extension Board x1
|
||
Breadboard x1
|
|||
74HC595
|
Resistor 220Ω x8
|
Jumper M/M x15
|
7-segment display x1
|
Component knowledge
7-segment display
A 7-segment display is a digital electronic display device. There is a figure “8” and a decimal point represented, which consists of 8 LEDs. The LEDs have a common anode and individual cathodes. Its internal structure and pin designation diagram is shown below:
As we can see in the above circuit diagram, we can control the state of each LED separately. Also, by combining LEDs with different states of ON and OFF, we can display different characters (Numbers and Letters). For example, to display a “0”: we need to turn ON LED segments A, B, C, D, E and F, and turn OFF LED segments G and DP.
In this project, we will use a 7-Segment Display with a common anode. Therefore, when there is an input low level to a LED segment the LED will turn ON. Defining segment “A” as the lowest level and segment “DP” as the highest level, from high to low would look like this: “DP”, “G”, “F”, “E”, “D”, “C”, “B”, “A”. Character “0” corresponds to the code: 1100 0000b=0xc0.
For detailed code values, please refer to the following table (common anode).
CHAR |
DP |
G |
F |
E |
D |
C |
B |
A |
Hex |
ASCII |
|---|---|---|---|---|---|---|---|---|---|---|
0 |
1 |
1 |
0 |
0 |
0 |
0 |
0 |
0 |
0xc0 |
1100 0000 |
1 |
1 |
1 |
1 |
1 |
1 |
0 |
0 |
1 |
0xf9 |
1111 1001 |
2 |
1 |
0 |
1 |
0 |
0 |
1 |
0 |
0 |
0xa4 |
1010 0100 |
3 |
1 |
0 |
1 |
1 |
0 |
0 |
0 |
0 |
0xb0 |
1011 0000 |
4 |
1 |
0 |
0 |
1 |
1 |
0 |
0 |
1 |
0x99 |
1001 1001 |
5 |
1 |
0 |
0 |
1 |
0 |
0 |
1 |
0 |
0x92 |
1001 0010 |
6 |
1 |
0 |
0 |
0 |
0 |
0 |
1 |
0 |
0x82 |
1000 0010 |
7 |
1 |
1 |
1 |
1 |
1 |
0 |
0 |
0 |
0xf8 |
1111 1000 |
8 |
1 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0x80 |
1000 0000 |
9 |
1 |
0 |
0 |
1 |
0 |
0 |
0 |
0 |
0x90 |
1001 0000 |
A |
1 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
0x88 |
1000 1000 |
B |
1 |
0 |
0 |
0 |
0 |
0 |
1 |
1 |
0x83 |
1000 0011 |
C |
1 |
1 |
0 |
0 |
0 |
1 |
1 |
0 |
0xc6 |
1100 0110 |
D |
1 |
0 |
1 |
0 |
0 |
0 |
0 |
1 |
0xa1 |
1010 0001 |
E |
1 |
0 |
0 |
0 |
0 |
1 |
1 |
0 |
0x86 |
1000 0110 |
F |
1 |
0 |
0 |
0 |
1 |
1 |
1 |
0 |
0x8e |
1000 1110 |
Circuit
Schematic diagram |
|
Hardware connection |
If you need any support, please contact us via: support@freenove.com
|
Code
In this section, the 74HC595 is used in the same way as in the previous section, but with different values transferred. We can learn how to master the digital display by sending the code value of “0” - “F”.
Move the program folder “Freenove_Super_Starter_Kit_for_ESP32/Python/Python_Codes” to disk(D) in advance with the path of “D:/Micropython_Codes”.
Open “Thonny”, click “This computer” -> “D:” -> “Micropython_Codes” -> “15.1_74HC595_and_7_segment_display”.
Select “my74HC595.py”, right click your mouse to select “Upload to /”, wait for “my74HC595.py” to be uploaded to ESP32-WROVER and then double click”74HC595_and_7_segment_display.py”.
15.1_74HC595_and_7_segment_display
Click “Run current script”, and you’ll see a 1-bit, 7-segment display displaying 0-f in a loop.
The following is the program code:
1import time
2from my74HC595 import Chip74HC595
3
4lists =[0xc0, 0xf9, 0xa4, 0xb0, 0x99, 0x92, 0x82, 0xf8,
5 0x80, 0x90, 0x88, 0x83, 0xc6, 0xa1, 0x86, 0x8e]
6
7
8while True:
9 chip = Chip74HC595(15,2,4)
10 for count in range(16):
11 chip.shiftOut(0,lists[count])
12 time.sleep_ms(500)
Import time and my74HC595 modules.
1import time
2from my74HC595 import Chip74HC595
Put the encoding “0” - “F” into the list.
1lists =[0xc0, 0xf9, 0xa4, 0xb0, 0x99, 0x92, 0x82, 0xf8,
2 0x80, 0x90, 0x88, 0x83, 0xc6, 0xa1, 0x86, 0x8e]
Define an object, whose pins applys default configuration, to drive 74HC595.
1chip = Chip74HC595(15,2,4)
Send data of digital tube to 74HC595 chip.
1chip.shiftOut(0,lists[count])








