欢迎来到天天文库
浏览记录
ID:41031693
大小:41.50 KB
页数:6页
时间:2019-08-14
《12864液晶显示程序》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、/*****************************************************************//**//*名称:12864液晶移动显示*//*功能:12864液晶移动显示*//*E-mail:hbyuan2007@sina.com*//*编写日期:2009.07*//*****************************************************************/#include#include#defineucharunsignedchar#defineuintuns
2、ignedintsbitLCD_RS=P2^0;sbitLCD_RW=P2^1;sbitLCD_EN=P2^2;ucharcodedis1[]={"ILOVE8051MCU"};ucharcodedis2[]={"TEL:13808311069"};/*******************************************************************//*/*延时子程序/*/*******************************************************************/voiddelay(intms){int
3、i;while(ms--){for(i=0;i<250;i++){_nop_();_nop_();_nop_();_nop_();}}}/*******************************************************************//*/*检查LCD忙状态/*lcd_busy为1时,忙,等待。lcd-busy为0时,闲,可写指令与数据。/*/*******************************************************************/bitlcd_busy(){bitresult;LCD_RS=0;
4、LCD_RW=1;LCD_EN=1;_nop_();_nop_();_nop_();_nop_();result=(bit)(P0&0x80);LCD_EN=0;returnresult;}/*******************************************************************//*/*写指令数据到LCD/*RS=L,RW=L,E=高脉冲,D0-D7=指令码。/*/*******************************************************************/voidlcd_wcmd(uchar
5、cmd){while(lcd_busy());LCD_RS=0;LCD_RW=0;LCD_EN=0;_nop_();_nop_();P0=cmd;_nop_();_nop_();_nop_();_nop_();LCD_EN=1;_nop_();_nop_();_nop_();_nop_();LCD_EN=0;}/*******************************************************************//*/*写显示数据到LCD/*RS=H,RW=L,E=高脉冲,D0-D7=数据。/*/**************************
6、*****************************************/voidlcd_wdat(uchardat){while(lcd_busy());LCD_RS=1;LCD_RW=0;LCD_EN=0;P0=dat;_nop_();_nop_();_nop_();_nop_();LCD_EN=1;_nop_();_nop_();_nop_();_nop_();LCD_EN=0;}/*******************************************************************//*/*设定显示位置/*/************
7、*******************************************************/voidlcd_pos(ucharpos){lcd_wcmd(pos
8、0x80);//数据指针=80+地址变量}/*******************************************************************//*/*LCD初始化设定/*/****************************************
此文档下载收益归作者所有