Skip to main content

Implementation of four 7-Segment LED display multiplexing with 8051 microcontroller

7-segment LED display are the widely used displays in many applications that can display any character or digital value. We have already discussed the 7-segment concept in our previous post which defines it as the combination of 8 LEDs forming "8" display and divided as the common cathode and common anode.

Now, learn the concept of multiplexing by which you can connect many 7-segment displays to a single port of 8051 microcontroller. Earlier we discussed about the 7-segment up counter display in which 3 7-segments are connected to 3 different ports and up counter is running from 0-999. But, it had limitation. You can not connect many 7-segments to a single port.

Multiplexing of 7-segment:




- In the above diagram you can see how i have connected the 4 7-segment display to the port P2 of 8051 microcontroller. It is a schematic diagram which i have drawn in Proteus ISIS professional. But, in practical you can implement the same concept. Use 8 pins of any port of microcontroller and connect the single pin to same pin of all 7-segment LED display and Hence, the multiplexing has been implemented.

Code:

#include"REGx52.h"
#define seg_data P2
sbit seg1=P0^1;
sbit seg2=P0^2;
sbit seg3=P0^3;
int ones=0,tens=0,hundreds=0,l;
void display_digit(int );
void delay();

void main()
{
seg1=seg2=seg3=1;
while(l<=999)
{
ones=l%10;
tens=(l/10)%10;
hundreds=(l/100);
display_digit(ones);
seg1=0;
delay();
seg1=1;

display_digit(tens);
seg2=0;
delay();
seg2=1;

display_digit(hundreds);
seg3=0;
delay();
seg3=1;
l++;
}
}

void delay()
{
long int k;
for(k=0;k<1000;k++);
}
void display_digit(int c)
{
switch(c)
{
case 0:
seg_data=0xbf;
break;
case 1:
seg_data=0x06;
break;
case 2:
seg_data=0x5b;
break;
case 3:
seg_data=0x4f;
break;
case 4:
seg_data=0x66;
break;
case 5:
seg_data=0x6d;
break;
case 6:
seg_data=0x7d;
break;
case 7:
seg_data=0x07;
break;
case 8:
seg_data=0x7f;
break;
case 9:
seg_data=0x6f;
break;
}
}


Explanation of code:

- It is similar as we write up counter. Use the binary to hexadecimal conversion concept to extract MSB and LSB digits for ones and thousands place. Now, use digital_display() function to display the value by passing it as an argument. This argument value is matched with the digital_display() passed value and then, switch case is taken through which the called value is displayed over 7-segment.

Comments

Popular posts from this blog

Buzzer interface with 8051 microcontroller

Buzzer  is a electronic device that converts the electronic signal into buzzing noise, that is applied to it. It can be used as electronic bell or as quiz buzzer in many applications around us. Here, i world like to discuss the interfacing of a small buzzer with 8051 microcontroller and how different projects can be constructed. Buzzer Interfacing: This project shows the interface with AT89S52 microcontroller to a buzzer. When a push button is pressed, the buzzer will get ON and OFF ( number of times set in the code ) and then stops. Circuit Diagram: - The port P1 of the microcontroller is connected to buzzer. This type of connection is possible, if the current requirements of the buzzer is not more than 20mA. The output is in current source mode so that buzzer will turn ON when the output of the port is logic LOW. Switch is connected to port P3 which remains at logic HIGH by pull up resistor.  Code: #include "REG52.h" #define buz P1 sbit SW=P3^0; long i...

Comparison Chart Between 8051, 8052, 8031and 8751

8051 is a popular 8-bit microcontroller and has been used in many applications since Intel introduced it. Many 8051 architecture are produced by Triscend, Intel, Atmel, Philips, Infineon (Siemens), ISSI, and Max Corp. Today, 8051 microcontrollers may not be popular but, the 8051 architecture is still popular and employed in thousands of embedded applications. This 8-bit architecture has been different segments such as 8052, 8051, 8751 and 8031 . 8052 is the super-set of 8051 and 8031 is the memory-less microcontroller hence, it has interfaced with external ROM. Whereas, 8751 chip has only 4Kbytes of on chip UV-EPROM. Everyone knows about the general 40-pin microcontroller i.e. 8051 introduced by Intel in 1980s and consists of serial communication pins, Timer, Interrupts, RAM, ROM. It has 4 ports and each port has 8 pins, total 32 pins and other 8 pins for other purposes. 8052 is the super-set of 8051 that consists of 8K bytes of internal RAM (4K in 8051), 256 by...

Different ways to generate delays in 8051

The delay length in 8051 microcontroller depends on three factors: The crystal frequency the number of clock per machine the C compiler. The original 8051 used 1/12 of the crystal oscillator frequency as one machine cycle. In other words, each machine cycle is equal to 12 clocks period of the crystal frequency connected to X1-X2 pins of 8051. To speed up the 8051, many recent versions of the 8051 have reduced the number of clocks per machine cycle from 12 to four, or even one. The frequency for the timer is always 1/12th the frequency of the crystal attached to the 8051, regardless of the 8051 version. In other words, AT89C51, DS5000, and DS89C4x0 the duration of the time to execute an instruction varies, but they all use 1/12th of the crystal's oscillator frequency for the clock source. 8051 has two different ways to generate time delay using C programming, regardless of 8051 version. The first method is simply using Loop   program function in which Delay() funct...