#include
#define uchar unsigned char;
uchar key_val=0; //定义键值,初始默认为0
uchar code TAB[16]={0x88,0Xbe,0Xc4,0X94,0Xb2,0X91,0X81,0Xbc, //74LS164驱动
0X80,0X90,0xa0,0x83,0xc9,0x86,0xc1,0xe1 };//0-f编码}; //0~F共阳数码管显示段码
void ms(unsigned char i)
{
unsigned char j;
for(;i>0;i--)
for(j=122;j>0;j--);
}
void Check_Key(void)
{
unsigned char row,col,tmp1,tmp2;
tmp1 = 0x10; //tmp1用来设置P1口的输出,取反后使P1.4~P1.7中有一个为0
for(row=0;row<4;row++) // 行检测
{
P0 = 0x0f; // 先将p1.4~P1.7置高
P0 =~tmp1; // 使P1.4~p1.7中有一个为0
tmp1*=2; // tmp1左移一位
if ((P0 & 0x0f) < 0x0f) // 检测P1.0~P1.3中是否有一位为0,只要有,则说明此行有键按下,进入列检测
{
ms(10);
if ((P0 & 0x0f) < 0x0f)
{
tmp2 = 0x01; // tmp2用于检测出哪一列为0
for(col =0;col<4;col++) // 列检测
{
if((P0 & tmp2)==0x00) // 该列如果为低电平则可以判定为该列
{
key_val = row*4 +col; // 获取键值,识别按键
return; // 退出循环
}
tmp2*=2; // tmp2左移一位
}
}
}
}
}
void main()
{
unsigned char i;
SCON=0x00;
//串口工作方式0.
while(1)
{
Check_Key();
//检测按键
for(i=0;i<6;i++)
{
SBUF=TAB[key_val];
//串口发送显示按键值
while(TI==0);
TI=0;
ms(5);
}
}
}