Open In App

Example of Interfacing Seven Segments LED Display with 8085

Seven segments LED display :

A seven-segment LED is a kind of LED(Light Emitting Diode) consisting of 7 small LEDs it usually comes with the microprocessor’s as we commonly need to interface them with microprocessors like 8085.



Structure of Seven Segments LED :



Interfacing Seven Segment Display with 8085 :

We will see a program to Interfacing Seven Segment Display with 8085 assuming address decoders with an address of AE H.

Note logic needed for activation –

Common Anode Method :

Here we are using a common anode display therefore 0 logic is needed to activate the segment. Suppose to display number 9 at the seven-segment display, therefore the segments F, G, B, A, C, and D have to be activated.

The instructions to execute it is given as,

MVI A,99
OUT AE

Common Cathode Method :

Here we are using common cathode 1 logic is needed to activate the signal. Suppose to display number 9 at the seven-segment display, therefore the segments F, G, B, A, C, and D have to be activated.

The instructions to execute it is given as,

MVI A,6F 
OUT AE
Article Tags :