SlideShare a Scribd company logo
4
Most read
5
Most read
16
Most read
Lcd interfacing with microprocessor 8051
LCD Interfacing
With 8051 Microprocessor
Group Members
• Hasnain Yaseen EE161021
• Sufyan Nasir EE161036
• Muhammad Ahtsham EE161012
• Usman Ashraf EE161046
Introduction
• LCD display is an inevitable part in almost all embedded projects and this
pre is about interfacing a 16×2 LCD with 8051 microcontroller.
• Many guys take it hard to interface LCD module with the 8051 but the fact
is that if you learn it properly, its a very easy job and by knowing it you
can easily design embedded projects like
• Digital voltmeter / ammeter,
• Digital clock,
• Home automation displays,
• Status indicator display,
• Display for music players etc.
Liquid Crystal Diode (LCD)
• A Liquid Crystal Display (LCD) is a
thin , flat panel display device used
for electronically displaying
information such as text ,images and
moving picture.
• LCD is used in Computer monitors,
Televisions , Instrument panels,
Gaming devices etc.
• Polarization of lights is used here to
display objects.
Why LCD ?
• Smaller size —LCDs occupy approximately 60 percent less space than CRT
displays an important feature when office space is limited.
• Lower power consumption—LCDs typically consume about half the
power and emit much less heat than CRT displays.
• Lighter weight —LCDs weigh approximately 70 percent less than CRT
displays of comparable size.
• No electromagnetic fields —LCDs do not emit electromagnetic fields and
are not susceptible to them. Thus, they are suitable for use in areas where CRTs
cannot be used.
• Longer life —LCDs have a longer useful life than CRTs.
16×2 LCD
• 16×2 LCD module is a very common type of
LCD module that is used in 8051 based
embedded projects.
• It consists of 16 rows and 2Â columns of
5×7 or 5×8 LCD dot
matrices.
• The module were are talking about here is
type number JHD162A which is a very
popular one .
• It is available in a 16 pin package with back
light ,contrast adjustment function .
• Each dot matrix has 5×8 dot resolution
LCD pin Configuration
Pin No: Name  Function
1 VSS This pin must be connected to the ground
2 VCC Â Positive supply voltage pin (5V DC)
3 VEE Contrast adjustment
4 RS RS=0 to select command register, RS=1 to select data register
5 R/W R/W=0 for write, R/W=1 for read
6 E Â Enable
7 DB0 Â Data
8 DB1 Â Data
9 DB2 Â Data
10 DB3 Â Data
11 DB4 Â Data
12 DB5 Â Data
13 DB6 Â Data
14 DB7 Â Data
15 LED+ Â Back light LED+
16 LED- Â Back light LED-
16×2 LCD module commands
Command Function
0F LCD ON, Cursor ON, Cursor blinking ON
01 Clear screen
02 Return home
04 Decrement cursor
06 Increment cursor
0E Display ON ,Cursor blinking OFF
80 Force cursor to the beginning of 1st line
C0 Force cursor to the beginning of 2ndline
16×2 LCD module commands
38 Use 2 lines and 5×7 matrix
83 Cursor line 1 position 3
3C Activate second line
08 Display OFF, Cursor OFF
C1 Jump to second line, position1
OC Display ON, Cursor OFF
C1 Jump to second line, position1
C2 Jump to second line, position2
LCD initialization
• The steps that has to be done for initializing the LCD display is given below and these
steps are common for almost all applications.
• Send 38H (Use 2 lines and 5×7 matrix)to the 8 bit data line for initialization
• Send 0FH for making LCD ON, cursor ON and cursor blinking ON.
• Send 06H for incrementing cursor position.
• Send 01H for clearing the display and return the cursor.
Sending data to the LCD
The steps for sending data to the LCD module is given below. Make R/W low.
• Make RS=0 if data byte is a command and make RS=1 if the data byte is a data to
be displayed.
• Place data byte on the data register.
• Pulse E from high to low.
• Repeat above steps for sending another data
LCD Contrast Control
• LCD display contrast is adjusted through a
variable resistor .
• A potentiometer is connected between the
appropriate power supply rails (Vdd and Vss
for single supply, and Vee and Vdd for
higher voltage LCD modules). The wiper of
the pot is connected to Vo (LCD bias voltage
input, see below). The LCD is then
positioned at the nominal viewing position,
and the pot is adjusted to obtain the desired
LCD appearance
LCD Timing for Read
LCD Timing for Write
Interfacing 16×2 LCD with 8051
Code for LCD Interfacing
• ORG 0000
• MOV A,#38H ; initialize. LCD 2 lines, 5x7 Matrix.
• ACALL COMNWRT ; Call command Subroutine
• ACALL DELAY ; Give LCD some time.
• MOV A, #0EH ; Display on, cursor on.
• ACALL COMNWRT ; Call command Subroutine.
• ACALL DELAY ; Give LCD some time. MOV A, # 01 ; Clear
LCD.
• ACALL COMNWRT ; Call command subroutine
• ; ACALL DELAY ; Give LCD sometime
• MOV A, # 06H ; Shift cursor right.
• ACALL COMNWRT ; ACALL DELAY
• BACK: MOV A, #82H ; Cursor at line 1 position 2
• ACALL COMNWRT ; Call command subroutine.
• ; ACALL DELAY ; Give LCD some time
• ; // MESSAGE DISPLY
• MOV A, #'F' ; Display letter F
• ACALL DATAWRT ; Call Data command subroutine
• MOV A, #'A' ; Display letter A
• ACALL DATAWRT ; Call Data command subroutine
• MOV A, #'J' ; Display letter J
• ACALL DATAWRT ; Call Data command subroutine
• MOV A, #'R' ; Display letter R
Code for LCD Interfacing
• MOV A, #01 ; Clear screen
• ACALL COMNWRT ; Call Data command subroutine
• SJMP BACK ; Keep displaying these letters
• ; AGAIN: SJMP AGAIN
• COMNWRT:
• MOV P1, A
• CLR P3.0; RS=0 FOR COMMAND WRITE
• CLR P3.1; R/W=0FOR WRITE
• SETB P3.2; E=1 FOR HIGH PUSLSE
• CLR P3.2 ;E=0 FOR H-TO-L PULSE
• RET
• DATAWRT:
• MOV P1, A; WRITE DATA TO LCD
• SETB P3.0; RS=1 FOR DATA
• CLR P3.1; R/W=0 F0R WRITE
• SETB P3.2; E=1 FOR HIGH PULSE
• CLR P3.2; E=0 FOR H-TO-L PULSE
• RET
• DELAY:
• MOV R4, #1
• HERE: DJNZ R4, HERE
• RET
• END
Thank You

More Related Content

PPTX
decade counter
PPT
Microprocessor 80386
PPTX
8051 MICROCONTROLLER ARCHITECTURE.pptx
PPTX
8051 Microcontroller ppt
PDF
8051 assembly programming
PPTX
Seven Segment Display
PPTX
Addressing modes of 8086
PPT
8255 presentaion.ppt
decade counter
Microprocessor 80386
8051 MICROCONTROLLER ARCHITECTURE.pptx
8051 Microcontroller ppt
8051 assembly programming
Seven Segment Display
Addressing modes of 8086
8255 presentaion.ppt

What's hot (20)

PPTX
Stacks & subroutines 1
PDF
Seven segment interfacing with 8051.pdf
PPTX
Sequential cmos logic circuits
PPTX
8051 Microcontroller PPT's By Er. Swapnil Kaware
PPTX
Interfacing Stepper motor with 8051
DOCX
Design of Elevator Controller using Verilog HDL
PPT
Timing diagram 8085 microprocessor
PPT
Memory & I/O interfacing
PPTX
8257 DMA Controller
PPT
Addressing modes
PPT
8051 block diagram
PPTX
Programmable logic devices
PPTX
LCD Interacing with 8051
PPT
Real Time Operating system (RTOS) - Embedded systems
PPT
multiplexers and demultiplexers
PPTX
Code Conversion in 8085 Microprocessor
PPTX
Interfacing external memory in 8051
PPT
Adc interfacing
PPTX
3.programmable interrupt controller 8259
PDF
T-states in microprocessor 8085
Stacks & subroutines 1
Seven segment interfacing with 8051.pdf
Sequential cmos logic circuits
8051 Microcontroller PPT's By Er. Swapnil Kaware
Interfacing Stepper motor with 8051
Design of Elevator Controller using Verilog HDL
Timing diagram 8085 microprocessor
Memory & I/O interfacing
8257 DMA Controller
Addressing modes
8051 block diagram
Programmable logic devices
LCD Interacing with 8051
Real Time Operating system (RTOS) - Embedded systems
multiplexers and demultiplexers
Code Conversion in 8085 Microprocessor
Interfacing external memory in 8051
Adc interfacing
3.programmable interrupt controller 8259
T-states in microprocessor 8085
Ad

Similar to Lcd interfacing with microprocessor 8051 (20)

PPT
Lcd interfacing1
DOCX
Lcd interfacing
PPTX
131080111003 mci
PPT
Lcd interface with atmega32 avr best.ppt
PDF
Experiment 16 x2 parallel lcd
DOCX
LCD WITH 8051.docx
DOCX
Est 8 1 st
PDF
PDF
Microcontroller part 4
PPT
PPTX
Lcd interfaing using 8051 and assambly language programming
PPTX
Micro c lab6(lcd)
PDF
Lcd tutorial
PDF
_LCD display-mbed.pdf
PPTX
8051_interface_LCD.pptx iii ece III ECE MPMC jntu k syllabus this is very he...
PPTX
ESD -DAY 24.pptx
DOCX
Alp lcd
PDF
Embedded C Programming Module 7 Presentation
PPTX
Applications of microcontroller(8051)
DOCX
Lcd display
Lcd interfacing1
Lcd interfacing
131080111003 mci
Lcd interface with atmega32 avr best.ppt
Experiment 16 x2 parallel lcd
LCD WITH 8051.docx
Est 8 1 st
Microcontroller part 4
Lcd interfaing using 8051 and assambly language programming
Micro c lab6(lcd)
Lcd tutorial
_LCD display-mbed.pdf
8051_interface_LCD.pptx iii ece III ECE MPMC jntu k syllabus this is very he...
ESD -DAY 24.pptx
Alp lcd
Embedded C Programming Module 7 Presentation
Applications of microcontroller(8051)
Lcd display
Ad

More from Hasnain Yaseen (6)

PDF
Mobile Phone Signal Jammer
PPTX
Z trasnform & Inverse Z-transform in matlab
PPTX
Why grades dont matters?
PDF
Compressor and types of compressors (Thermodynamics)
PDF
Rotation control of separately excited Dc Motor
PPTX
Microprocessors historical background
Mobile Phone Signal Jammer
Z trasnform & Inverse Z-transform in matlab
Why grades dont matters?
Compressor and types of compressors (Thermodynamics)
Rotation control of separately excited Dc Motor
Microprocessors historical background

Recently uploaded (20)

PPTX
Cell Structure & Organelles in detailed.
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Classroom Observation Tools for Teachers
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPTX
Institutional Correction lecture only . . .
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
Cell Types and Its function , kingdom of life
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
Computing-Curriculum for Schools in Ghana
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
master seminar digital applications in india
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
Cell Structure & Organelles in detailed.
Final Presentation General Medicine 03-08-2024.pptx
Classroom Observation Tools for Teachers
Anesthesia in Laparoscopic Surgery in India
2.FourierTransform-ShortQuestionswithAnswers.pdf
Institutional Correction lecture only . . .
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
Cell Types and Its function , kingdom of life
O5-L3 Freight Transport Ops (International) V1.pdf
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
O7-L3 Supply Chain Operations - ICLT Program
Computing-Curriculum for Schools in Ghana
VCE English Exam - Section C Student Revision Booklet
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
master seminar digital applications in india
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Chinmaya Tiranga quiz Grand Finale.pdf
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Abdominal Access Techniques with Prof. Dr. R K Mishra

Lcd interfacing with microprocessor 8051

  • 2. LCD Interfacing With 8051 Microprocessor
  • 3. Group Members • Hasnain Yaseen EE161021 • Sufyan Nasir EE161036 • Muhammad Ahtsham EE161012 • Usman Ashraf EE161046
  • 4. Introduction • LCD display is an inevitable part in almost all embedded projects and this pre is about interfacing a 16×2 LCD with 8051 microcontroller. • Many guys take it hard to interface LCD module with the 8051 but the fact is that if you learn it properly, its a very easy job and by knowing it you can easily design embedded projects like • Digital voltmeter / ammeter, • Digital clock, • Home automation displays, • Status indicator display, • Display for music players etc.
  • 5. Liquid Crystal Diode (LCD) • A Liquid Crystal Display (LCD) is a thin , flat panel display device used for electronically displaying information such as text ,images and moving picture. • LCD is used in Computer monitors, Televisions , Instrument panels, Gaming devices etc. • Polarization of lights is used here to display objects.
  • 6. Why LCD ? • Smaller size —LCDs occupy approximately 60 percent less space than CRT displays an important feature when office space is limited. • Lower power consumption—LCDs typically consume about half the power and emit much less heat than CRT displays. • Lighter weight —LCDs weigh approximately 70 percent less than CRT displays of comparable size. • No electromagnetic fields —LCDs do not emit electromagnetic fields and are not susceptible to them. Thus, they are suitable for use in areas where CRTs cannot be used. • Longer life —LCDs have a longer useful life than CRTs.
  • 7. 16×2 LCD • 16×2 LCD module is a very common type of LCD module that is used in 8051 based embedded projects. • It consists of 16 rows and 2Â columns of 5×7 or 5×8 LCD dot matrices. • The module were are talking about here is type number JHD162A which is a very popular one . • It is available in a 16 pin package with back light ,contrast adjustment function . • Each dot matrix has 5×8 dot resolution
  • 8. LCD pin Configuration Pin No: Name  Function 1 VSS This pin must be connected to the ground 2 VCC  Positive supply voltage pin (5V DC) 3 VEE Contrast adjustment 4 RS RS=0 to select command register, RS=1 to select data register 5 R/W R/W=0 for write, R/W=1 for read 6 E  Enable 7 DB0  Data 8 DB1  Data 9 DB2  Data 10 DB3  Data 11 DB4  Data 12 DB5  Data 13 DB6  Data 14 DB7  Data 15 LED+  Back light LED+ 16 LED-  Back light LED-
  • 9. 16×2 LCD module commands Command Function 0F LCD ON, Cursor ON, Cursor blinking ON 01 Clear screen 02 Return home 04 Decrement cursor 06 Increment cursor 0E Display ON ,Cursor blinking OFF 80 Force cursor to the beginning of 1st line C0 Force cursor to the beginning of 2ndline
  • 10. 16×2 LCD module commands 38 Use 2 lines and 5×7 matrix 83 Cursor line 1 position 3 3C Activate second line 08 Display OFF, Cursor OFF C1 Jump to second line, position1 OC Display ON, Cursor OFF C1 Jump to second line, position1 C2 Jump to second line, position2
  • 11. LCD initialization • The steps that has to be done for initializing the LCD display is given below and these steps are common for almost all applications. • Send 38H (Use 2 lines and 5×7 matrix)to the 8 bit data line for initialization • Send 0FH for making LCD ON, cursor ON and cursor blinking ON. • Send 06H for incrementing cursor position. • Send 01H for clearing the display and return the cursor.
  • 12. Sending data to the LCD The steps for sending data to the LCD module is given below. Make R/W low. • Make RS=0 if data byte is a command and make RS=1 if the data byte is a data to be displayed. • Place data byte on the data register. • Pulse E from high to low. • Repeat above steps for sending another data
  • 13. LCD Contrast Control • LCD display contrast is adjusted through a variable resistor . • A potentiometer is connected between the appropriate power supply rails (Vdd and Vss for single supply, and Vee and Vdd for higher voltage LCD modules). The wiper of the pot is connected to Vo (LCD bias voltage input, see below). The LCD is then positioned at the nominal viewing position, and the pot is adjusted to obtain the desired LCD appearance
  • 15. LCD Timing for Write
  • 17. Code for LCD Interfacing • ORG 0000 • MOV A,#38H ; initialize. LCD 2 lines, 5x7 Matrix. • ACALL COMNWRT ; Call command Subroutine • ACALL DELAY ; Give LCD some time. • MOV A, #0EH ; Display on, cursor on. • ACALL COMNWRT ; Call command Subroutine. • ACALL DELAY ; Give LCD some time. MOV A, # 01 ; Clear LCD. • ACALL COMNWRT ; Call command subroutine • ; ACALL DELAY ; Give LCD sometime • MOV A, # 06H ; Shift cursor right. • ACALL COMNWRT ; ACALL DELAY • BACK: MOV A, #82H ; Cursor at line 1 position 2 • ACALL COMNWRT ; Call command subroutine. • ; ACALL DELAY ; Give LCD some time • ; // MESSAGE DISPLY • MOV A, #'F' ; Display letter F • ACALL DATAWRT ; Call Data command subroutine • MOV A, #'A' ; Display letter A • ACALL DATAWRT ; Call Data command subroutine • MOV A, #'J' ; Display letter J • ACALL DATAWRT ; Call Data command subroutine • MOV A, #'R' ; Display letter R
  • 18. Code for LCD Interfacing • MOV A, #01 ; Clear screen • ACALL COMNWRT ; Call Data command subroutine • SJMP BACK ; Keep displaying these letters • ; AGAIN: SJMP AGAIN • COMNWRT: • MOV P1, A • CLR P3.0; RS=0 FOR COMMAND WRITE • CLR P3.1; R/W=0FOR WRITE • SETB P3.2; E=1 FOR HIGH PUSLSE • CLR P3.2 ;E=0 FOR H-TO-L PULSE • RET • DATAWRT: • MOV P1, A; WRITE DATA TO LCD • SETB P3.0; RS=1 FOR DATA • CLR P3.1; R/W=0 F0R WRITE • SETB P3.2; E=1 FOR HIGH PULSE • CLR P3.2; E=0 FOR H-TO-L PULSE • RET • DELAY: • MOV R4, #1 • HERE: DJNZ R4, HERE • RET • END