Aim:
This tutorial describes how to interface between a 128×64 graphic LCD and an 8-bit
micro-controller. The techniques described here are useful for any other controller type and interfacing technique. The micro-controller is connected via its I/O lines and all signals to the LCD are controlled directly by software.
micro-controller. The techniques described here are useful for any other controller type and interfacing technique. The micro-controller is connected via its I/O lines and all signals to the LCD are controlled directly by software.
Description:
Display mapping: Individual pixels can be controlled by writing a byte to a specific address. Each address is mapped to a corresponding set of 8 pixels on the display. Please refer to Figure 1. Note that the order of the columns is reversed. The first byte of data entered after setting the address registers to 0 will appear in the upper right of the display.
The display has 20 pins, numbered from right to left, as we can see in the picture below. It can be used to communicate with the any microcontroller using parallel communication. In this article, where the LCD refresh rate is not a critical point, we will use the parallel communication
The circuit uses a potentiometer (used a 50K) for adjusting the display contrast, and power is made by 5v power supply.
The specification of this LCD are as follows.
- 128 horizontal pixel and 64 vertical pixel resolution.
- Controlled based on KS0108B
- Parallel 8bit interface
- On board graphic memory.
- Available in Green backlight with dark green pixels.
- Also available in Blue backlight with light blue pixels.
- LED backlight.
- 20 PIN linear connection.
PIN Description
PIN
|
Name
|
Function
|
Connection with AVR PIN
|
1 | Vss | Ground | |
2 | Vcc | +5v Supply in | |
3 | V0 | Contrast Adjust | |
4 | RS | Instruction/Data Register Select | PB2 |
5 | R/W | READ/WRITE SELECTION | PB1 |
6 | E | ENABLE SIGNAL | PB0 |
7 | DB0 | DATA IN/OUT | PD0 |
8 | DB1 | DATA IN/OUT | PD1 |
9 | DB2 | DATA IN/OUT | PD2 |
10 | DB3 | DATA IN/OUT | PD3 |
11 | DB4 | DATA IN/OUT | PD4 |
12 | DB5 | DATA IN/OUT | PD5 |
13 | DB6 | DATA IN/OUT | PD6 |
14 | DB7 | DATA IN/OUT | PD7 |
15 | CS1 | Chip Select 1 | PB3 |
16 | CS2 | Chip Select 2 | PB4 |
17 | RST | RESET SIGNAL | RESET |
18 | VEE | NEGATIVE 10V OUT | |
19 | LED+ | LED BACKLIGHT | |
20 | LED- | LED BACKLIGHT |
Block Diagram
Schematic
Code
Main File:
// *******************************************************
// Project: Interfacing Graphical LCD using LPC2148
// Author: Hack Projects India
// Module description: Operate Graphical LCD
// *******************************************************
#include<lpc214x.h>
unsigned char c,z=0;
unsigned char ar00[]={127,8,8,8,127}; //H,5x7
unsigned char ar11[]={126,17,17,17,126}; //A,5x7
unsigned char ar22[]={62,65,65,65,34}; //C,5x7
unsigned char ar33[]={127,8,20,34,65}; //K,5x7
unsigned char ar44[]={127,9,9,9,6}; //P,5x7
unsigned char ar55[]={127,9,25,41,70}; //R,5x7
unsigned char ar66[]={62,65,65,65,62}; //O,5x7
unsigned char ar77[]={32,64,65,63,1}; //J,5x7
unsigned char ar88[]={127,73,73,73,65}; //E,5x7
unsigned char ar99[]={1,1,127,1,1}; //T,5x7
unsigned char ar01[]={70,73,73,73,49}; //S,5x7
unsigned char ar02[]={0,0,0,0,0}; // ,5x7
void delay_ms(double ms)
{
unsigned int i,j;
for(i=0;i<ms;i++)
for(j=0;j<50;j++);
}
void ctrloff()
{
IO1CLR=0xff<<16;
IO0CLR=0xff;
}
//Display on function
void displayon()
{
ctrloff();
IO0SET=0x3f;
IO1SET=0x08<<16;IO1SET=0x10<<16;
IO1CLR=0x02<<16;IO1CLR=0x01<<16;
IO1SET=0x04<<16;
delay_ms(50);
IO1CLR=0x04<<16;
}
void setcolumn(unsigned char y)
{
ctrloff();
if(y<64)
{
c=y;
IO0SET=0x40|(y&63); //0x40 represents Column 0
IO1SET=0x08<<16;IO1CLR=0x10<<16;
IO1CLR=0x01<<16;
IO1CLR=0x02<<16;
IO1SET=0x04<<16;
delay_ms(50);
IO1CLR=0x04<<16;
}
else
{
c=y;
IO0SET=0x40|((y-64)&63); //0x40 represents Column 0
IO1SET=0x10<<16;IO1CLR=0x08<<16;
IO1CLR=0x01<<16;
IO1CLR=0x02<<16;
IO1SET=0x04<<16;
delay_ms(50);
IO1CLR=0x04<<16;
}
}
void setpage(unsigned char x)
{
ctrloff();
IO0SET= 0xb8|x; //0xb8 represents Page 0
IO1SET=0x08<<16;
IO1SET=0x10<<16;
IO1CLR=0x01<<16;
IO1CLR=0x02<<16;
IO1SET=0x04<<16;
delay_ms(50);
IO1CLR=0x04<<16;
}
void lcddata(unsigned char *value,unsigned int limit)
{
unsigned int i;
for(i=0;i<limit;i++)
{
ctrloff();
if(c<64)
{
IO0SET=value[i];
IO1SET=0x08<<16;IO1CLR=0x10<<16;
IO1SET=0x01<<16;
IO1CLR=0x02<<16;
IO1SET=0x04<<16;
delay_ms(50);
IO1CLR=0x04<<16;
c++;
}
else
{
setcolumn(c);
IO0SET=value[i];
IO1SET=0x10<<16;IO1CLR=0x08<<16;
IO1SET=0x01<<16;
IO1CLR=0x02<<16;
IO1SET=0x04<<16;
delay_ms(50);
IO1CLR=0x04<<16;
c++;
}
if(c>127)
return;
}
}
void clrlcd()
{
unsigned char i,j;
for (i=0;i < 8;i++)
{
setpage(i);
setcolumn(0);
for (j= 0 ;j < 128; j++)
lcddata(&z,1);
}
}
void main()
{
PINSEL0=0x00000000;
PINSEL1=0x00000000;
PINSEL2=0x00000000;
IO0DIR=0xff;
IO1DIR=0xff<<16;
displayon();
setpage(3);
setcolumn(0);
lcddata(ar00,5);
setpage(3);
setcolumn(6);
lcddata(ar11,5);
setpage(3);
setcolumn(12);
lcddata(ar22,5);
setpage(3);
setcolumn(18);
lcddata(ar33,5);
setpage(3);
setcolumn(24);
lcddata(ar02,5);
setpage(3);
setcolumn(30);
lcddata(ar44,5);
setpage(3);
setcolumn(36);
lcddata(ar55,5);
setpage(3);
setcolumn(42);
lcddata(ar66,5);
setpage(3);
setcolumn(48);
lcddata(ar77,5);
setpage(3);
setcolumn(54);
lcddata(ar88,5);
setpage(3);
setcolumn(60);
lcddata(ar22,5);
setpage(3);
setcolumn(66);
lcddata(ar99,5);
setpage(3);
setcolumn(72);
lcddata(ar01,5);
while(1)
{
}
}
Downloads:
The code was compiled in Keil uvision4 and simulation was made in Proteus v7.7.
To download code and proteus simulation click here.
Further Reading suggestions:
You may also like,
- Interfacing keypad with ARM(LPC2148)
- nterfacing DAC with ARM(LPC2148)
- Interfacing with UART of ARM(LPC2148) controller
- Interfacing SPI communication with PIC
- ARM(LPC2148) Displaying Custom Characters on LCD
- RTC interfacing using I2C in ARM(LPC2148)
- Interfacing ultrasonic sensor with ARM(LPC2148)
- Interfacing GPS Modu with ARM(LPC2148)
- Interfacing GSM Module with ARM(LPC2148)
- Interfacing PWM in ARM(LPC2148)
- Interfacing ADC with ARM(LPC2148)
- Scrolling string on LCD using ARM(LPC2148)
- Interfacing keypad with ARM(LPC2148)
- nterfacing DAC with ARM(LPC2148)
- Interfacing with UART of ARM(LPC2148) controller
- Interfacing SPI communication with PIC
- ARM(LPC2148) Displaying Custom Characters on LCD
- RTC interfacing using I2C in ARM(LPC2148)
- Interfacing ultrasonic sensor with ARM(LPC2148)
- Interfacing GPS Modu with ARM(LPC2148)
- Interfacing GSM Module with ARM(LPC2148)
- Interfacing PWM in ARM(LPC2148)
- Interfacing ADC with ARM(LPC2148)
- Scrolling string on LCD using ARM(LPC2148)
No comments:
Post a Comment