Quantcast
Channel: Gadgetronicx
Viewing all articles
Browse latest Browse all 215

Interfacing two 7 Segments in a single port of a Microcontroller using BCD Decoder

$
0
0
two-7-seven-segment-interface-single-port-bcd-decoder-ic
Two 7 segment interface in single port of microcontroller
7 Segments are widely employed displays widely used in embedded applications. It possess many advantages due to its small size, low power consumption and low cost. Before getting started with it read How to interface 7 segment with 8051. But dedicating 7 pins of the microcontroller to it creates a major drawback for it and also the handling capacity of the controller is greatly reduced that is you can only use only four segments along with 8051.


To overcome this you can use the below design where it uses a specific decoder IC 7448 which decodes Binary coded decimal input to proper pattern output to light about the specific LED’s in the 7 segment. Adding this decoder IC along with the 7 segment would allow you to interface a total of 8 seven segments with your 8051 Microcontroller.

PIN DIAGRAM OF 74LS48:

pin-diagram-using-ic-7448-bcd-decoder
IC 7448

STEPS TO PROGRAM TWO 7 SEGMENTS IN SINGLE PORT OF 8051 USING DECODER:

  1. The main advantage of using decoder is there is no need for the user to determine the pattern of illumination of 7 segment.
  2. You can feed the values directly using your lower four and higher four bits of your microcontroller port.
  3. Make it to increment one by one by putting it in a for loop.
  4. You need to shift the increment values from lower four bits to higher four bits for continuous display of numbers in 7 segment.

CODE:

  1. #include<regx51.h>
  2. int a,b;
  3. void delay();
  4. void main()
  5.   {
  6.     for(a=0;a<=9;a++)   //Loop for displaying counts in 7 Segment
  7.     {
  8.       for(b=0;b<=9;b++)
  9.       {
  10.         P3=a|b<<4;   //Shift values from lower four bits to higher four bits
  11.         delay();         //Calling out delay
  12.       }
  13.     }
  14.   }
  15. void delay()         //software delay
  16.  {
  17.     int i,j;
  18.     for(i=0;i<=100;i++)
  19.      {
  20.        for(j=0;j<=300;j++);
  21.      }
  22.   }

Like this article? Share this with others through social sites and dont forget to follow us there. Post your queries below and we will get back to you. Thank you for visiting andEnjoy Coding.


Viewing all articles
Browse latest Browse all 215

Trending Articles