You are currently viewing How to Interface 8bit LCD with LPC2148 ARM7starter board

How to Interface 8bit LCD with LPC2148 ARM7starter board

Spread the love

The ARM7 LPC2148 Starter Board is specifically designed to help students to master the required skills in the area of embedded systems. The kit is designed in such way that all the possible features of the microcontroller will be easily used by the students. The kit supports in system programming (ISP) which is done through serial port.

NXP’s ARM7 (LPC2148 ), ARM Starter Kit is proposed to smooth the progress of developing and debugging of various designs encompassing of High speed 32-bit Microcontrollers.

LCD (Liquid Crystal Display)

Liquid Crystal Display also called as LCD is very helpful in providing user interface as well as for debugging purpose. A liquid crystal display (LCD) is a flat panel display that uses the light modulating properties of liquid crystals (LCs). LCD Modules can present textual information to user.

Interfacing LCD

Fig. 1 shows how to interface the LCD to microcontroller. The 2×16 character LCD interface card with supports both modes 4-bit and 8-bit interface, and also facility to adjust contrast through trim pot. In 8-bit interface 11 lines needed to create 8-bit LCD display; 8 data bits (D0 – D7), three control lines, address bit (RS), read/write bit (R/W) and control signal (E).

Interfacing LCD
Fig. 1 Interfacing 8 bit LCD to Microcontroller

Interfacing 8 bit LCD with LPC2148

We now want to display a text in LPC2148 Starter Board by using 8 bit LCD module.

The ARM7 LPC2148 Starter Board has seven numbers of LCD connections are needed to create 8-bit interface; connected with 8 data bits (P0.8 – P0.15, D0-D7), address bit (RS-P0.5), read/write bit (R/W-P0.6) and control signal (E-P0.7) to make LCD display.

Pin Assignment with LPC2148

Circuit Diagram to Interface 8 bit LCD with LPC2148

Circuit Diagram to Interface 8 bit LCD with LPC2148

Source Code

The Interfacing 8 bit LCD with LPC2148 program is very simple and straight forward, which display a text in 2 X 16 LCD module using 4 data lines only. Some delay is occurring when a single command / data is executed. The C programs are written in Keil software.

C Program to display a text in 8 bit LCD using LPC2148

#include 
#include 

void lcd_initialize(void);
void delay(unsigned int);
void lcd_cmd(unsigned char);
void lcd_data(unsigned char);

const unsigned char msg[] = ("PS-ARM Starter KITS");	//msg
const unsigned char msg1[]= ("  ::LCD DEMO::  ");	//msg1
const unsigned char cmd[4] = {0x38,0x0c,0x06,0x01};	//lcd commands

//----------------------------------
//		LCD Initialize
//----------------------------------
void lcd_initialize(void)
{
	int i;
	for(i=0;i<4;i++)
	{
		IOCLR0 = 0xFF000000;
		lcd_cmd(cmd[i]);
		delay(15); 
	}

}

//----------------------------------
//		LCD Command Send
//----------------------------------
void lcd_cmd(unsigned char data)
{
	IOPIN1	= data << 24;
	IOCLR1	|= 0x10000;		//RS
	IOCLR1	|= 0x20000;		//RW
	IOSET1	|= 0x40000;		//EN
	delay(15); 
	IOCLR1	|= 0x40000;		//EN
}



//----------------------------------
//		LCD Data Send
//----------------------------------
void lcd_data(unsigned char data)
{
	IOPIN1	= data << 24;
	IOSET1	|= 0x10000;		//RS
	IOCLR1	|= 0x20000;		//RW
	IOSET1	|= 0x40000;		//EN
	delay(15); 
	IOCLR1	|= 0x40000;		//EN
}




//----------------------------------
//		LCD Display Msg
//----------------------------------
void lcd_display(void)
{
	char i;

	/* First line message */
	IOCLR1 = 0xFF000000;
	lcd_cmd(0x80);
	delay(15); 
	i=0;
	while(msg[i]!='\0')
		{
			IOCLR1 = 0xFF000000;
			lcd_data(msg[i]);
			i++;
			delay(15); 
		}
	delay(15); 

	/* Second line message */

	lcd_cmd(0xc0);
	delay(15); 
	i=0;
	while(msg1[i]!='\0')
		{
			IOCLR1 = 0xFF000000;
			lcd_data(msg1[i]);
			i++;
			delay(15); 
		}
	delay(15); 
}


//----------------------------------
//		Delay Routine
//----------------------------------
void delay(unsigned int n)
{
	int i,j;
	for(i=0;i<n;i++)
	{
		for(j=0;j<0x2700;j++)
		{;}
	}
}	 



//----------------------------------
//		Main program Starts Here
//----------------------------------
void main(void)
{

	PINSEL0 = 0;
	PINSEL1 = 0;	
	PINSEL2 &= 0X0000000C;
	
	IODIR1 = 0XFFFF0000;	//PORT [P1.31--P1.16] 

	
	
	delay(10);
	lcd_initialize();		//Initialize LCD
	delay(10);	

	while(1)				//loop forever
	{	
		delay(15); 		
		lcd_display();
		delay(15); 
		while(1);
	}			

}


To compile the above C code you need the KEIL software. They must be properly set up and a project with correct settings must be created in order to compile the code. To compile the above code, the C file must be added to the project.

In Keil, you want to develop or debug the project without any hardware setup. You must compile the code for generating HEX file. In debugging Mode, you want to check the port output without microcontroller Board.

The Flash Magic software is used to download the hex file into your microcontroller through UART0.

Testing the LCD Module with LPC2148

Give +3.3V power supply to LPC2148 Starter Board; the LCD is connected with microcontroller LPC2148 Board. When the program is downloading into LPC2148 in Starter Board, the screen should show the text messages.

If you not reading any text from LCD, then you just check the jumper connections & adjust the trim pot level. Otherwise you just check it with debugging mode in Keil. If you want to see more details about debugging just see the videos in below link.

How to Create and Debug a Project in Keil .

General Information

☞For proper working use the components of exact values as shown in Circuit file. Wherever possible use new components.

☞Solder everything in a clean way. A major problem arises due to improper soldering, solder jumps and loose joints.

☞Use the exact value crystal shown in schematic.

☞More instructions are available in following articles,

User Manual of LPC2148 Starter Board.

Creating & Debugging a Project in KEIL

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.