|
單片機(jī)C語(yǔ)言實(shí)例-348-用LCD循環(huán)右移顯示W(wǎng)elcome to China
//實(shí)例82:用LCD循環(huán)右移顯示"Welcome to China"
#include<reg51.h> //包含單片機(jī)寄存器的頭文件
#include<intrins.h> //包含_nop_()函數(shù)定義的頭文件
sbit RS=P2^0; //寄存器選擇位,將RS位定義為P2.0引腳
sbit RW=P2^1; //讀寫選擇位,將RW位定義為P2.1引腳
sbit E=P2^2; //使能信號(hào)位,將E位定義為P2.2引腳
sbit BF=P0^7; //忙碌標(biāo)志位,,將BF位定義為P0.7引腳
unsigned char code string[ ]={"Welcome to China"};
/*****************************************************
函數(shù)功能:延時(shí)1ms
(3j+2)*i=(3×33+2)×10=1010(微秒),可以認(rèn)為是1毫秒
***************************************************/
void delay1ms()
{
unsigned char i,j;
for(i=0;i<10;i++)
for(j=0;j<33;j++)
;
}
/*****************************************************
函數(shù)功能:延時(shí)若干毫秒
入口參數(shù):n
***************************************************/
void delay(unsigned char n)
{
unsigned char i;
for(i=0;i<n;i++)
delay1ms();
}
/*****************************************************
函數(shù)功能:判斷液晶模塊的忙碌狀態(tài)
返回值:result。result=1,忙碌;result=0,不忙
***************************************************/
unsigned char BusyTest(void)
{
bit result;
RS=0; //根據(jù)規(guī)定,RS為低電平,RW為高電平時(shí),可以讀狀態(tài)
RW=1;
E=1; //E=1,才允許讀寫
_nop_(); //空操作
_nop_();
_nop_();
_nop_(); //空操作四個(gè)機(jī)器周期,給硬件反應(yīng)時(shí)間
result=BF; //將忙碌標(biāo)志電平賦給result
E=0;
return result;
}
/*****************************************************
函數(shù)功能:將模式設(shè)置指令或顯示地址寫入液晶模塊
入口參數(shù):dictate
***************************************************/
void WriteInstruction (unsigned char dictate)
{
while(BusyTest()==1); //如果忙就等待
RS=0; //根據(jù)規(guī)定,RS和R/W同時(shí)為低電平時(shí),可以寫入指令
RW=0;
E=0; //E置低電平(根據(jù)表8-6,寫指令時(shí),E為高脈沖,
// 就是讓E從0到1發(fā)生正跳變,所以應(yīng)先置"0"
_nop_();
_nop_(); //空操作兩個(gè)機(jī)器周期,給硬件反應(yīng)時(shí)間
P0=dictate; //將數(shù)據(jù)送入P0口,即寫入指令或地址
_nop_();
_nop_();
_nop_();
_nop_(); //空操作四個(gè)機(jī)器周期,給硬件反應(yīng)時(shí)間
E=1; //E置高電平
_nop_();
_nop_();
_nop_();
_nop_(); //空操作四個(gè)機(jī)器周期,給硬件反應(yīng)時(shí)間
E=0; //當(dāng)E由高電平跳變成低電平時(shí),液晶模塊開始執(zhí)行命令
}
/*****************************************************
函數(shù)功能:指定字符顯示的實(shí)際地址
入口參數(shù):x
***************************************************/
void WriteAddress(unsigned char x)
{
WriteInstruction(x|0x80); //顯示位置的確定方法規(guī)定為"80H+地址碼x"
}
/*****************************************************
函數(shù)功能:將數(shù)據(jù)(字符的標(biāo)準(zhǔn)ASCII碼)寫入液晶模塊
入口參數(shù):y(為字符常量)
***************************************************/
void WriteData(unsigned char y)
{
while(BusyTest()==1);
RS=1; //RS為高電平,RW為低電平時(shí),可以寫入數(shù)據(jù)
RW=0;
E=0; //E置低電平(根據(jù)表8-6,寫指令時(shí),E為高脈沖,
// 就是讓E從0到1發(fā)生正跳變,所以應(yīng)先置"0"
P0=y; //將數(shù)據(jù)送入P0口,即將數(shù)據(jù)寫入液晶模塊
_nop_();
_nop_();
_nop_();
_nop_(); //空操作四個(gè)機(jī)器周期,給硬件反應(yīng)時(shí)間
E=1; //E置高電平
_nop_();
_nop_();
_nop_();
_nop_(); //空操作四個(gè)機(jī)器周期,給硬件反應(yīng)時(shí)間
E=0; //當(dāng)E由高電平跳變成低電平時(shí),液晶模塊開始執(zhí)行命令
}
/*****************************************************
函數(shù)功能:對(duì)LCD的顯示模式進(jìn)行初始化設(shè)置
***************************************************/
void LcdInitiate(void)
{
delay(15); //延時(shí)15ms,首次寫指令時(shí)應(yīng)給LCD一段較長(zhǎng)的反應(yīng)時(shí)間
WriteInstruction(0x38); //顯示模式設(shè)置:16×2顯示,5×7點(diǎn)陣,8位數(shù)據(jù)接口
delay(5); //延時(shí)5ms
WriteInstruction(0x38);
delay(5);
WriteInstruction(0x38);
delay(5);
WriteInstruction(0x0f); //顯示模式設(shè)置:顯示開,有光標(biāo),光標(biāo)閃爍
delay(5);
WriteInstruction(0x06); //顯示模式設(shè)置:光標(biāo)右移,字符不移
delay(5);
WriteInstruction(0x01); //清屏幕指令,將以前的顯示內(nèi)容清除
delay(5);
}
void main(void) //主函數(shù)
{
unsigned char i;
LcdInitiate(); //調(diào)用LCD初始化函數(shù)
delay(10);
while(1)
{
WriteInstruction(0x01);//清顯示:清屏幕指令
WriteAddress(0x00); // 設(shè)置顯示位置為第一行的第5個(gè)字
i = 0;
while(string != '\0')
{ // 顯示字符
WriteData(string);
i++;
delay(150);
}
for(i=0;i<4;i++)
delay(250);
}
}
更多詳情參考附件文檔
+08:00C149聯(lián)盟網(wǎng)4029.png (10.65 KB, 下載次數(shù): 10)
下載附件
保存到相冊(cè)
2022-3-31 10:35 上傳
游客,如果您要查看本帖隱藏內(nèi)容請(qǐng) 回復(fù)
|
|