代碼從網(wǎng)頁中copy過后,可能會存在錯誤,請明辨。
#include <at89x51.h>
/*****************************************
P1------DB0~DB7 P2.0------RS
P2.1------RW
P2.2------E
*****************************************/
#define LCD_DB P1
sbit LCD_RS=P2^0;
sbit LCD_RW=P2^1;
sbit LCD_E=P2^2;
/******定義函數(shù)****************/
#define uchar unsigned char
#define uint unsigned int
void LCD_init(void);//初始化函數(shù)
void LCD_write_command(uchar command);//寫指令函數(shù)
void LCD_write_data(uchar dat);//寫數(shù)據(jù)函數(shù)
void LCD_disp_char(uchar x,uchar y,uchar dat);//在某個屏幕位置上顯示一個字符,X(0-16),y(1-2)
//void LCD_check_busy(void);//檢查忙函數(shù)。我沒用到此函數(shù),因為通過率極低。
void delay_n40us(uint n);//延時函數(shù)
//********************************
//*******初始化函數(shù)***************
void LCD_init(void)
{
LCD_write_command(0x38);//設置8位格式,2行,5x7
LCD_write_command(0x0c);//整體顯示,關光標,不閃爍
LCD_write_command(0x06);//設定輸入方式,增量不移位
LCD_write_command(0x01);//清除屏幕顯示
delay_n40us(100);//實踐證明,我的LCD1602上,用for循環(huán)200次就能可靠完成清屏指令。
}
//********************************
//********寫指令函數(shù)************
void LCD_write_command(uchar dat)
{
LCD_DB=dat;
LCD_RS=0;//指令
LCD_RW=0;//寫入
LCD_E=1;//允許
LCD_E=0;
delay_n40us(1);//實踐證明,我的LCD1602上,用for循環(huán)1次就能完成普通寫指令。
}
//*******************************
//********寫數(shù)據(jù)函數(shù)*************
void LCD_write_data(uchar dat)
{
LCD_DB=dat;
LCD_RS=1;//數(shù)據(jù)
LCD_RW=0;//寫入
LCD_E=1;//允許
LCD_E=0;
delay_n40us(1);
}
//********************************
//*******顯示一個字符函數(shù)*********
void LCD_disp_char(uchar x,uchar y,uchar dat)
{
uchar address;
if(y==1)
address=0x80+x;
else
address=0xc0+x;
LCD_write_command(address);
LCD_write_data(dat);
}
//********************************
/*******檢查忙函數(shù)*************
void LCD_check_busy() //實踐證明,在我的LCD1602上,檢查忙指令通過率極低,以
{ //至于不能正常使用LCD。因此我沒有再用檢查忙函數(shù)。而使
do //用了延時的方法,延時還是非常好用的。我試了一下,用
{ LCD_E=0; //for循環(huán)作延時,普通指令只要1次循就可完成。清屏指令
LCD_RS=0; //要用200次循環(huán)便能完成。
LCD_RW=1;
LCD_DB=0xff;
LCD_E=1;
}while(LCD_DB^7==1);
}
******************************/
//********延時函數(shù)***************
void delay_n40us(uint n)
{ uint i;
uchar j;
for(i=n;i>0;i--)
for(j=0;j<2;j++); //在這個延時循環(huán)函數(shù)中我只做了2次循環(huán),
} //實踐證明我的LCD1602上普通的指令只需1次循環(huán)就能可靠完成。
//*******************************
//*********主函數(shù)*****************
void main(void)
{
LCD_init();
LCD_disp_char(0,1,"A");
while(1);
}
//*******************************