资源简介
LCD1602 STC89C52简单的固定字符显示,适合初学者。
代码片段和文件信息
#include
#include
sbit rs= P2^5;
sbit rw = P2^6;
sbit ep = P2^7;
unsigned char code dis1[] = {“ 2010:03:20 “};
unsigned char code dis2[] = {“ jielong jingyu “};
void delay(unsigned char ms)
{
unsigned char i;
while(ms--)
{
for(i = 0; i< 250; i++)
{_nop_();_nop_();_nop_();_nop_();}
}
}
bit lcd_bz(){
bit result;
rs = 0;
rw = 1;
ep = 1;
_nop_();_nop_();_nop_();_nop_();
result = (bit)(P0 & 0x80); //默认转换的是第七位好.
ep = 0;
return result;
}
void lcd_wcmd(unsigned char cmd)
{
while(lcd_bz());//判断LCD是否忙碌 若lcd_bz为1则等待.直到为0
rs = 0;
rw = 0; //写命令
ep = 0; //以下将实现使能即e先=0;然后e=1;再e=0;
_nop_();_nop_();
P0 = cmd;
_nop_();_nop_();_nop_();_nop_();
ep = 1;
_nop_();_nop_();_nop_();_nop_();
ep = 0;
}
void lc
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5554 2010-04-07 20:36 1602fixed_number\1
文件 1558 2010-04-07 20:36 1602fixed_number\1.c
文件 792 2010-04-07 20:36 1602fixed_number\1.hex
文件 35 2010-04-07 20:36 1602fixed_number\1.lnp
文件 3991 2010-04-07 20:36 1602fixed_number\1.LST
文件 8805 2010-04-07 20:36 1602fixed_number\1.M51
文件 5616 2010-04-07 20:36 1602fixed_number\1.OBJ
文件 1394 2010-04-07 20:37 1602fixed_number\1.Opt
文件 721 2010-04-07 20:37 1602fixed_number\1.plg
文件 2141 2010-04-07 20:34 1602fixed_number\1.Uv2
文件 1394 2010-04-07 20:34 1602fixed_number\1_Opt.Bak
文件 2137 2010-04-07 20:26 1602fixed_number\1_Uv2.Bak
文件 155372 2010-04-07 20:31 1602fixed_number\DS1302.DSN
文件 1521 2010-04-07 20:38 1602fixed_number\DS1302.PWI
文件 155352 2007-09-12 14:29 1602fixed_number\Last Loaded DS1302.DBK
文件 19633 2007-09-12 14:28 1602fixed_number\LISA1.SDF
文件 6376 2010-04-07 20:36 1602fixed_number\STARTUP.A51
文件 10698 2010-04-07 20:36 1602fixed_number\STARTUP.LST
文件 750 2010-04-07 20:36 1602fixed_number\STARTUP.OBJ
文件 1524550 2004-07-24 21:40 1602fixed_number\效果显示图.bmp.bmp
目录 0 2010-11-26 13:16 1602fixed_number
----------- --------- ---------- ----- ----
1908390 21
相关资源
- 51单片机 LCD1602液晶 sht31 IIC接口
- 51单片机 ADC0832 ADC 仿真 proteus LCD160
- stm32f103 控制PWM输出
- ADC0804+DAC0832 51单片机
- lcd1602 温度日历闹钟功能
- LCD1602 电子时钟 protues仿真
- 基于51单片机的超声波测距程序LCD16
- 基于VHDL的LCD1602显示程序,电路设计,
- C51万年历设计LCD1602.rar
- 基于LPC2124嵌入式课程设计包括LM016L
- 基于LPC2124下的贪吃蛇游戏
- stm32控制LCD1602
- STC89C52RC的介绍
- MSP430G2553 +LCD1602四位液晶显示程序
- LCD1602篮球比赛计分器
- 电压测量proteus仿真ADC0808+LCD1602
- STM32 TIM2+LCD1602秒表实验
- 基于51单片机和LCD1602的万年历程序
- DS1302时钟LCD1602显示
- 51单片机,LCD1602DS18B20
- 基于STC89C52单片机温室大棚监控监控系
- 基于msp430f149的mpu6050程序
- STC89C52单片机控制GSM发送短信例程
- 光电测速及LCD1602显示
- lM016L/1602显示汉字(lcd1602手册+keil51
- 硬件编程开发--字模软件
- LCD1602显示万年历程序
- MSP430G2553控制LCD1602
- 4*4键盘+lcd1602protel原理图pcb图
- DS1302时钟芯片做的LCD1602显示时钟51单
评论
共有 条评论