- 1、本文档共17页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
LCD_LM3033B-OBR2驱动程序(国外英语资料)
LCD_LM3033B-OBR2驱动程序(国外英语资料)
LM3033B LCD driver
/ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
LM3033B LCD driver:
Author: electrocution time: Feb. 3, 2007
Master chip: AT89X51:11.0592 MHZ
The wiring diagram:
Data: P1 mouth;
RS = P3 ^ 0;
RW = P3 ^ 7;
E = P3 ^ 6;
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
# include reg52. H
# include intrins. H
Sbit RS = P3 ^ 0;
Sbit RW = P3 ^ 7;
Sbit E = P3 ^ 6;
# define Lcd_Bus P1
Void delay (unsigned int t)
{
Unsigned int I, j;
For (I = 0; I t; I + +)
(j = 0; j 10; j + +);
}
Void write_com (unsigned char cmdcode)
{
RS = 0;
RW = 0;
E = 1;
Lcd_Bus = cmdcode;
E = 0;
Delay (5);
}
Void write_data (unsigned char Dispdata)
{
RS = 1;
RW = 0;
E = 1;
Lcd_Bus = Dispdata;
E = 0;
Delay (5);
}
Void lcdinit ()
{
Delay (2000);
Write_com (0 x30);
Delay (10);
Write_com (0 x30);
Delay (5);
Write_com (0 x0c);
Delay (10);
Write_com (0 x01);
Delay (500);
Write_com (0 x06);
Delay (0);
}
Void hzkdis (unsigned char code * s)
{
While (* s 0)
{
Write_data (* s);
S++;
Delay (50);
}
}
Void ceshi ()
{
Write_com (0 x01);
Delay (5);
Write_com (0 x82);
Hzkdis ( TOPWAY );
Write_com (0 x90);
Hzkdis ( production of science and technology innovation laboratory at xi an university of science and technology );
Write_com (0 x88);
Hzkdis ( passion creates wonderful infinite );
}
Void gundong ()
{
}
Void Disp_Img (unsigned char code * img)
{
Unsigned int j = 0;
Unsigned char x, y, I;
For (I = 0; I 9; I + = 8)
For (y = 0; y 32; y + +)
For (x = 0; x 8; x + +)
{
Write_com (0 x36);
Write_com (y + 0 x80);
Write_com (x + 0x80 + I);
Write_com (0 x30);
Write_data ();
Write_data ();
}
}
Unsigned char code BMP []
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
您可能关注的文档
最近下载
- 2025年中国碳化硼陶瓷项目创业投资方案.docx
- 中国氯气项目创业计划书.docx
- 中国红磷阻燃剂项目商业计划书.docx
- 《新时代汉语口语:初级·上》PPT第10课 我想养只小狗.pptx
- 学习领会第二十一次集体学习时重要讲话心得体会.docx VIP
- 2025年衢州常山县统计局公开招聘编外统计员13人笔试备考试题含答案详解(能力提升).docx
- 2025年中国车辆照明及电气信号设备制造项目投资计划书.docx
- 2025年燃气发电机组项目分析及研究报告.docx
- 学习遵循第二十一次集体学习时重要讲话心得体会.docx VIP
- 新概念英语第二册 Lesson 1A private conversation 课件(共42张PPT.pptx VIP
文档评论(0)