Product categories

Have You Seen

B0505S-1WR3 MORNSUN Isolated DC - DC Converter

B0505S-1WR3 MORNSUN Isolated DC - DC Converter

Mornsun B0505S-1WR3 DC-DC Isolated ConverterMORNSUN B0505S 1WR3 1 watt, 5 Volts Isolated DC to DC Po..

Rs.106.20 (inc GST)
Rs.90.00 + GST

SKU: 2969 | DAE663
Stock: 40
XL1509-Adj E1 Buck DC to DC Converter IC (SOP8L Package)

XL1509-Adj E1 Buck DC to DC Converter IC (SOP8L Package)

XL1509-Adj E1 Buck DC to DC Converter IC (SOP8L Package)XL1509-Adj E1 Buck DC to DC Converter IC, Ad..

Rs.25.96 (inc GST)
Rs.22.00 + GST

SKU: 3657 | DAF397
Stock: 485

LCD INTERFACING TO 8051 IN 8 BIT MODE




Liquid Crystal Display also called as LCD is very helpful in providing user interface as well as for debugging purpose. The most common type of LCD controller is HITACHI 44780 which provides a simple interface between the controller & an LCD. These LCD's are very simple to interface with the controller as well as are cost effective.The LCD requires 3 control lines (RS, R/W & EN) & 8 (or 4) data lines.

The number on data lines depends on the mode of operation. If operated in 8-bit mode then 8 data lines plus 3 control lines i.e. total 11 port pins are required. In case of 4-bit mode only 4 data lines are required & the 8-bit data is sent by first sending the higher nibble followed by the lower nibble.

The three control lines are RS, RW & Enable.


RS : Register Select. When RS = 0 the command register is selected. When RS=1 the data register is selected.

RW : Read or Write. When RW=0 write to LCD. When RW=1 read from LCD.

Enable : Used to Latch data into the LCD. A HIGH TO LOW edge latches the data into the LCD.

 


 

Here is a Code in C for interfacing LCD in 8-bit mode.


.

---

.

#define rs                                           P2_5

#define rw                                          P2_6

#define enable                                                 P2_7

#define lcd_port                              P0

main()

{

Lcd_Ini();

lcd_command(0x86);

lcd_display(‘D’);

lcd_display(‘N’);

lcd_display(‘A’);

lcd_command(0x0C4);

lcd_display(‘T’);

lcd_display(‘E’);

lcd_display(‘C’);

lcd_display(‘H’);

lcd_display(‘N’);

lcd_display(‘O’);

lcd_display(‘L’);

lcd_display(‘O’);

lcd_display(‘G’);

lcd_display(‘Y’);

while(1)

{

}

}

void Lcd_Ini()

{

lcd_command(0x38);

delay_ms(30);

lcd_command(0x0c);

delay_ms(10);

lcd_command(0x06);

delay_ms(10);

lcd_command(0x01);

delay_ms(10);

}

void lcd_command(unsigned char command)

{

rw=LOW;

rs=LOW;

lcd_port=command;

enable=HIGH;

enable=LOW;

delay_ms(5);

}

void lcd_display(unsigned char display)

{

rw=LOW;

rs=HIGH;

lcd_port=display;

enable=HIGH;

enable=LOW;

delay_ms(1);

}


 


 

This program displays “DNA” on first line of LCD and “Technology” on second line.

For delay functions check this link.


Written by Amol Shah

Amol Shah

Founder of DNA Technology an Electronic Engineer by choice. Started working on this website as an Hobby and now its a full time venture. Very passionate about Electronics and like to learn new stuff. Want to make DNA Technology one of the best Online Store for Electronics Components in India.
Follow Me Twitter | Facebook | Google Plus | Instagram