找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

51矩阵键盘1602显示

[复制链接]
admin 发表于 2012-9-2 20:22:01 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
我正在编一个简单的矩阵键盘程序,用1602显示。
问题:我现在按一个键,1602总是不停的显示我按数字(例如我按了1键,1602就一直全屏都是1),我想按一次键,1602只显示一个数字。
希望哪位高手提点一下,或者给我一个参考程序。。。。

#include<reg52.h>
#define uint unsigned int
#define uchar unsigned char
sbit dula=P2^6;
sbit wula=P2^7;
sbit lcden=P3^4;
sbit lcdrs=P3^5;
uchar code table[]={
0x31,0x32,0x33,0x34,
0x35,0x36,0x37,0x38,
0x39,0x30,0x2b,0x2d,
0x2a,0x2f,0x3d,0x2e};
uchar num,temp,i,buf;
void delay(uint z)
{
uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--);
}
uchar keyscan();
void write_com(uchar com)
{
lcdrs=0;
P0=com;
delay(5);
lcden=1;
delay(5);
lcden=0;
}
void write_data(uchar date)
{
P0=date;
delay(5);
lcden=1;
delay(5);
lcden=0;
}
void init()
{
dula=0;
wula=0;
lcden=0;
i=0;
write_com(0x38);
write_com(0x0f);
write_com(0x06);
write_com(0x80);
}
void main()
{
init();
while(1)
{
if(i>0)
{
lcdrs=1;
delay(5);
i=0;
}
write_data(table[keyscan()]);
delay(5);
lcdrs=0;
delay(5);
}
}
uchar keyscan()
{
P3=0xfe;
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
delay(5);
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
temp=P3;
switch(temp)
{ i++;
case 0xee:num=0;
break;
case 0xde:num=1;
break;
case 0xbe:num=2;
break;
case 0x7e:num=10;
break;
}
while(temp!=0xf0)
{
temp=P3;
temp=temp&0xf0;
}
}
}

P3=0xfd;
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
delay(5);
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
temp=P3;
switch(temp)
{ i++;
case 0xed:num=3;
break;
case 0xdd:num=4;
break;
case 0xbd:num=5;
break;
case 0x7d:num=11;
break;
}
while(temp!=0xf0)
{
temp=P3;
temp=temp&0xf0;
}
}
}


P3=0xfb;
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
delay(5);
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
temp=P3;
switch(temp)
{ i++;
case 0xeb:num=6;
break;
case 0xdb:num=7;
break;
case 0xbb:num=8;
break;
case 0x7b:num=12;
break;
}
while(temp!=0xf0)
{
temp=P3;
temp=temp&0xf0;
}
}
}


P3=0xf7;
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
delay(5);
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
temp=P3;
switch(temp)
{ i++;
case 0xe7:num=9;
break;
case 0xd7:num=15;
break;
case 0xb7:num=14;
break;
case 0x77:num=16;
break;
}
while(temp!=0xf0)
{
temp=P3;
temp=temp&0xf0;
}
}
}
return num;

}
这个就是我的程序,各位高手看看吧。就是按一次键,1602就一直显示该数字,全屏都是,然后再按下一个键1602就显示下一个数字,但是还是全屏一直显示那个数字。
[ 此贴被又一在2009-11-28 15:06重新编辑 ]


键盘接口.rar (11.14 KB, 下载次数: 3)
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-11-26 21:27 , Processed in 0.053861 second(s), 10 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表