#include "Test01.h"
uchar Keyvalue = 0 ; //定义变量记录按键动作
uint KeyTouchtimes = 0 ; //定义变量记录按键次数
/****************************
//延时
*****************************/
void Delay(uint n)
{
uint i,j;
for(j = 0; j<5; j++)
{
for(i = 0;i<n;i++);
}
}
/****************************
//初始化按键为中断输入方式
*****************************/
void InitKeyINT(void)
{
//P0SEL &= ~0X02;
//P0DIR &= ~0X02; //按键在P01口,设置为输入模式
P0INP |= 0x02; //上拉
P0IEN |= 0X02; //P01设置为中断方式
PICTL |= 0X01; //下降沿触发
EA = 1;
IEN1 |= 0X20; // P0设置为中断方式;
P0IFG |= 0x00; //初始化中断标志位
}
/****************************
//初始化程序,将P10、P11、P14定义为输出口,并将LED灯初始化为灭
*****************************/
void InitIO(void)
{
P1DIR |= 0x13; //P10、P11、P14定义为输出
RLED = 0;
GLED = 0;
YLED = 0; //LED灯初始化为灭
}
/****************************
//中断处理函数
*****************************/
#pragma vector = P0INT_VECTOR
__interrupt void P0_ISR(void)
{
if(P0IFG>0) //按键中断
{
P0IFG = 0;
Delay(100);
if(P0IFG==0) //按键中断
{
Delay(100);
KeyTouchtimes = KeyTouchtimes+1; //每次中断发生时记录按键次数加1
}
}
P0IF = 0; //清中断标志
}
/***************************
//主函数
***************************/
void main(void)
{
InitIO();
InitKeyINT(); //调用初始化函数
while(1)
{
if(KeyTouchtimes ==1) //第一次按下按键设置LED1灯亮
{
RLED = 1;
GLED = 0;
YLED = 0;
}
if(KeyTouchtimes == 2)
//第二次按下按键设置为LED3,LED2,LED1倒序流水闪烁
{
GLED = !GLED;
Delay(20000);
YLED = !YLED;
Delay(20000);
RLED = !RLED;
Delay(20000);
}
if(KeyTouchtimes == 3)
//第三次按下按键设置为LED1,LED2,LED3顺序流水闪烁
{
RLED = !RLED;
Delay(20000);
YLED = !YLED;
Delay(20000);
GLED = !GLED;
Delay(20000);
}
if(KeyTouchtimes == 4)
//第四次按下按键设置为LED1,LED2,LED3全部关闭
{
RLED = 0;
GLED = 0;
YLED = 0; //关闭所有LED
KeyTouchtimes =0; //重置按键次数记录变量
}
}
}
|