#include "reg52.h"
#include<intrins.h> //此文件中定义了单片机的一些特殊功能寄存器
#define led P2
#define uchar unsigned char
typedef unsigned int u16; //对数据类型进行声明定义
typedef unsigned char u8;
#define uint unsigned int
uchar table[]={0x7e,0xbd,0xdb,0xe7};
#define GPIO_KEY P1
u8 KeyValue;
void delay_ms(uint z)
{
uint i,j;
for(i=0;i<z;i++)
for(j=0;j<110;j++);
}
void delay(u16 i)
{
while(i--);
} //用来存放读取到的键值
void KEY_Scan(void)
{
char a=0;
GPIO_KEY=0x0f;
if(GPIO_KEY!=0x0f)//读取按键是否按下
{
delay(1000);//延时10ms进行消抖
if(GPIO_KEY!=0x0f)//再次检测键盘是否按下
{
//测试列
GPIO_KEY=0X0F;
switch(GPIO_KEY)
{
case(0X07): KeyValue=1;break;
case(0X0b): KeyValue=2;break;
case(0X0d): KeyValue=3;break;
case(0X0e): KeyValue=4;break;
}
//测试行
GPIO_KEY=0XF0;
switch(GPIO_KEY)
{
case(0X70): KeyValue=KeyValue;break;
case(0Xb0): KeyValue=KeyValue+4;break;
case(0Xd0): KeyValue=KeyValue+8;break;
case(0Xe0): KeyValue=KeyValue+12;break;
}
while((a<50)&&(GPIO_KEY!=0xf0)) //检测按键松手检测
{
delay(1000);
a++;
}
}
}
}
void liu()
{ u16 i;
if(KeyValue==1)
{
led =0xfe;
for(i=0;i<7;i++) //从左至右亮,每次一盏
{ delay(50000); //大约延时450ms
led=_crol_(led,1);
Int0Init();
}
}
if(KeyValue==2)
{
KeyValue=0;
led=0x7f;
for(i=0;i<7;i++) //将led右移一位
{ delay(50000); //大约延时450ms
led=_cror_(led,1);
}
delay(50000);
led=0xff;
}
}
void time0init()
{
TMOD=0X01; //定时器0工作方式
TH0=0XFc;
TL0=0X18;
TR0=1;
ET0=1;
EA=1;
}
void Int0Init()
{
//设置INT0
IT0=1;//跳变沿出发方式(下降沿)
EX0=1;//打开INT0的中断允许。
EA=1;//打开总中断
}
void Int0() interrupt 0 //外部中断1的中断函数
{
KEY_Scan();
if(KeyValue==3)
{
led=0x00;
KeyValue=0;
}
}
void main()
{
time0init();
while(1);
}
void tim0() interrupt 1
{
TH0=0XFc;
TL0=0X18;
KEY_Scan();
liu();
} |