51单片机程序——4乘4矩阵键盘使用方法
#define uint unsigned int
#define uchar unsigned char
#define dula P0
#define wela P1
unsigned char code DuanMa[]={0xc0,0xf9,0xa4,0xb0,
uchar num,temp;
void delay(uint z)
{
uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--);
}
uchar keyscan();
void display(uchar aa);
void main()
{
num=16;
while(1)
{
display(keyscan());
}
}
void display(uchar aa)
{
wela=0xff;
dula=DuanMa[aa];
}
uchar keyscan()
{
P2=0xef;
temp=P2;
temp=temp&0x0f;
while(temp!=0x0f)
{
delay(5);
temp=P2;
temp=temp&0x0f;
while(temp!=0x0f)
{
temp=P2;
switch(temp)
{
case 0xee:num=0;
case 0xed:num=1;
case 0xeb:num=2;
case 0xe7:num=3;
}
while(temp!=0x0f)
{
temp=P2;
temp=temp&0x0f;
}
}
}
P2=0xdf;
temp=P2;
temp=temp&0x0f;
while(temp!=0x0f)
{
delay(5);
temp=P2;
temp=temp&0x0f;
while(temp!=0x0f)
{
temp=P2;
switch(temp)
{
case 0xde:num=4;
case 0xdd:num=5;
case 0xdb:num=6;
case 0xd7:num=7;
}
while(temp!=0x0f)
{
temp=P2;
temp=temp&0x0f;
}
}
}
P2=0xbf;
temp=P2;
temp=temp&0x0f;
while(temp!=0x0f)
{
delay(5);
temp=P2;
temp=temp&0x0f;
while(temp!=0x0f)
{
temp=P2;
switch(temp)
{
case 0xbe:num=8;
case 0xbd:num=9;
case 0xbb:num=10;
case 0xb7:num=11;
}
while(temp!=0x0f)
{
temp=P2;
temp=temp&0x0f;
}
}
}
P2=0x7f;
temp=P2;
temp=temp&0x0f;
while(temp!=0x0f)
{
delay(5);
temp=P2;
temp=temp&0x0f;
while(temp!=0x0f)
{
temp=P2;
switch(temp)
{
case 0x7e:num=12;
case 0x7d:num=13;
case 0x7b:num=14;
case 0x77:num=15;
}
while(temp!=0x0f)
{
temp=P2;
temp=temp&0x0f;
}
}
}
return num;
}
51单片机4乘4矩阵键 相关文章:
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)
- Windows CE 进程、线程和内存管理(二)(11-09)