字符液晶1602仿真测试

字符液晶1602仿真测试

预览截图

应用介绍

字符液晶1602仿真测试

#include <REGX52.H>
#include "LCD1602.h"

unsigned char TempBuffer[10];
void IntToStr(unsigned int t, unsigned char *str, unsigned char n) 
{
	unsigned char a[5]; char i, j;                                 	
	a[0]=(t/10000)%10;         //取得整数值到数组         	
	a[1]=(t/1000)%10;                                     	
	a[2]=(t/100)%10;                                      	
	a[3]=(t/10)%10;                                       	
	a[4]=(t/1)%10;                                        	
                                                      
	for(i=0; i<5; i++)         //转成ASCII码              	
		a[i]=a[i]+'0';                                    	
	for(i=0; a[i]=='0' && i<=3; i++);                     	
	for(j=5-n; j<i; j++)       //填充空格                 	
		{ *str=' ';  str++; }                             	
	for(; i<5; i++)                                       	
		{ *str=a[i]; str++; }  //加入有效的数字           	
	*str='\0'; 
} 

void Delay1ms(unsigned int count)
{
	unsigned int i,j;
	for(i=0;i<count;i++)
	for(j=0;j<120;j++);
}

main()
{
	unsigned int Count = 0;
	LCD_Initial();
	GotoXY(0,0);
	Print("The 1602LCD Test");
	GotoXY(0,1);
	Print("GO:       by JJJ");

	while(1)
	{
		IntToStr(Count++,&TempBuffer[0],5);
		GotoXY(3,1);
		Print(&TempBuffer[0]);
		Delay1ms(100);
	}
}

文件列表(部分)

名称 大小 修改日期
LCD16023.38 KB2019-06-24
LCD1602.c0.54 KB2019-06-24
LCD1602.h1.35 KB2019-06-24
LCD1602.hex0.85 KB2019-06-24
LCD1602.lnp0.04 KB2019-06-24
LCD1602.LST0.99 KB2019-06-24
LCD1602.M511.74 KB2019-06-24
LCD1602.OBJ3.70 KB2019-06-24
LCD1602.Opt0.62 KB2019-06-24
LCD1602.plg1.31 KB2019-06-24
LCD1602.Uv20.83 KB2019-06-24
LCD1602_Opt.Bak0.70 KB2019-06-24
Last Loaded LCD1602.DBK12.11 KB2019-06-24
LCD1602.BMP15.95 KB2019-06-24
LCD1602.DSN12.14 KB2019-06-24
LCD1602.PWI0.35 KB2019-06-24
Keil0.00 KB2019-06-24
0015、字符液晶1602仿真测试0.00 KB2019-06-24

立即下载

相关下载

[字符液晶1602仿真测试] 字符液晶1602仿真测试

评论列表 共有 0 条评论

暂无评论

微信捐赠

微信扫一扫体验

立即
上传
发表
评论
返回
顶部