Report2 Exp6
Report2 Exp6
Experiment No.6
Sequential Logic Circuits using Breadboard and IC’s.
Prepared by:
Mohammad Shtayeh 12310228
Section: 10
Date: 18th/April/2025
Abstract
For this experiment, we will use the breadboard to build up a combinational circuit that counts
from 0 to 9 and displays the decimal number of a segment. We will use three different integrated
circuits for this experiment, a counter (chip 7490), a BCD (Binary-Coded-Decimal) to seven
segment display decoder (chip 7447), and a seven segment display. We will learn about the pin
assignment for each chip, where each pin must be connected, and their functions.
Upon completion of the testing, I am expected to be able to construct this combinational circuit,
and to construct more complex ones that use the same integrated circuits and have similar
functionalities.
IV
Table of Contents
Abstract_____________________________________________________________________ IV
Table of Contents _____________________________________________________________ V
Table of Figures ______________________________________________________________ VI
List of Tables ________________________________________________________________ VII
1. Theory __________________________________________________________________ 1
1.1 7490 Counter _______________________________________________________________ 1
1.1.1 Pin Assignment _________________________________________________________________ 1
1.2 7447 BCD to Seven-Segment Decoder ____________________________________________ 2
1.2.1 Pin Assignment _________________________________________________________________ 3
1.3 Seven Segment Display _______________________________________________________ 4
1.3.1 Pin Assignment _________________________________________________________________ 5
2. Procedure _______________________________________________________________ 6
2.1 Constructing the BCD Counter Circuit with Seven Segment Display: ___________________ 6
2.1.1 Circuit Disccussion ______________________________________________________________ 7
Conclusion ___________________________________________________________________ 9
References__________________________________________________________________ 10
V
Table of Figures
VI
List of Tables
VII
1. Theory
The primary function of the IC 7490 is to count in decimal (0-9) sequence. It has four internal
flip-flops that enable it to count in a decade sequence, making it suitable for various counting
applications. It belongs to the 74xx series of logic components. [1]
The IC 7490 features a gated zero reset input. When this input is activated, the counter is reset to
zero, allowing you to start counting from the beginning. To activate it you have to inspect the
binary number of you want to reset at then take the corresponding inputs to the ones of the
number and connect them to the reset zero pins (pins 2 and 3). [1]
It counts based on clock pulses applied to its Clock Input pin. Each rising or falling edge of the
clock input triggers the counter to advance to the next count in the sequence. [1]
The IC has four outputs labeled as A, B, C, and D. These outputs represent the current count in
binary form. In BCD mode, they indicate the BCD code for the count (0 to 9), with D being the
Most Significant Bit, and A being the Least Significant Bit. [1]
1
Table 1 shows what each pin’s name is, and its description:
Table 1: Information on the Pins of the 7490 Chip [1]
A specialized decoder transforms the BCD information into a format suitable for a 7-segment
display. The IC 7447 chip is designed to accept and process BCD inputs corresponding to 7-
segment display codes. [2]
The 74xx47 integrated circuit is engineered to control a 7-segment display and is specifically
compatible with common anode 7-segment displays. The chip receives a 4-bit binary input
labelled as DCBA, where D stands for the 8's place, C represents the 4's, B the 2's, and A the 1's.
These 4-bit inputs usually originate from a binary counting mechanism (e.g. 7490 chip). [2]
The display output makes sense only when the 4-bit binary number DCBA falls within the range
of 0000 (which represents the digit 0) to 1001 (or the digit 9). This 4-bit binary representation is
commonly known as Binary-Coded Decimal (BCD). If you input a binary number greater than 9
into the chip, the display will yield an anomalous output. [2]
2
1.2.1 Pin Assignment
3
1.3 Seven Segment Display
The 7-segment display, consists of seven LED’s (Light Emitting Diode) arranged in a rectangular
fashion, in addition to a decimal point. Each of the seven LEDs is called a segment because
when illuminated the segment forms part of a numerical digit to be displayed, they are arranged
as shown below in Figure 3. [3]
Inside the segment display, each LED has two terminals, an Anode (+), and a Cathode (-). [4]
In the segment all the LEDs must have a common point, if the common point is connected to the
positive power supply and they are tied from the anode, while the cathode of each LED is wired
to its matching segment input. It is called a common anode configuration. [5]
And if the common point is tied to the ground, then the LEDs are connected together from the
cathode, and each anode is connected to the corresponding input. It is called a common cathode
configuration. [5]
4
In both configurations, current-limiting resistors are used to lower the amount of current that the
driver sends into the LEDs. This achieves two goals: [5]
1- Control the brightness of the LEDs.
2- Prevent over-current (that may burn the LEDs).
This is the general pin assignment for a seven-segment display, pin 8 and 3 are the common
point, discussed above. In this experiment, common cathode configuration is used, so the
common points are GND.
5
2. Procedure
2.1 Constructing the BCD Counter Circuit with Seven
Segment Display:
To build this combinational circuit, that consists of the three ICs, a Counter (7490 chip),
BCD to 7-segment Decoder (7447 chip), and a seven segment dislay:
- First, the ICs were lined up on the breadboard, where each set of pins is on a different
terminal strip, so the pins on each side are seperated, so that the connection of the circuit is
correct.
- Then the VCC pin in the chips were connected with the positive high voltage (+5v), and the
GND pin with the ground from the power supply.
- The Reset pins on the 7490 chip were connected with the ground, CLKA was connected with
a signal generator or a manual clock, CLKB, which is the clock for the second flip flop, was
attached with QA (LSB).
- Then the inputs QD ~ QA were linked with the inpts D ~ A on the decoder.
- On the decoder, the LT and BI/RBO pins were fastened with the high voltage, the RBI pin
was linked with the ground.
- The seven-segment outputs a ~ g were attached with the 7-segment inputs on the seven-
segment display.
- Before connecting the display with the ground we have to connect it with a resistor so that
current flowing to is limited, to preserve it and extend its life time
6
Figure 8 demonstrates how the circuit looked after it was finished, and the connections was
done as mentioned above.
Based on the experimental results, it can be said that the construction was successful.
The time took to construct this circuit didn’t exceed an hour in the lab.
Delving into the construction of the counter, it can be modified so that it can count till a specific
number, for instance, if we want the circuit to count from 0 to 5, that means it has to reset to zero
when 6 is reach. So, we have to inspect the binary number of 6 which is 0110, then connect the
inputs(C & B, in this case) corresponding with the ones with the reset zero pins (pin 2 & pin 3).
Also, another combinational circuit like this one can be brought to construct a binary counter
from 00 to 99. Which can be done by connecting the CLKA of the second CC counter with the
QD (MSB) of the former CC.
7
Figure 9: The Circuit Showing the Numbers 0 to 9
8
Conclusion
At last, my understanding of the counter chips (7490), decoder chip (7447), and the
seven-segment display has improved. Now, I can implement a BCD counter
combinational circuit that counts from 0 to 9, or from 0 to any wanted number, or a CC
that counts till 99, and all of these adjustments have to be done on the counter chips’
wiring. Overall, the experiment was really useful and it had very important and valuable
knowledge, it was fun too.
9
References
10