單片機(jī)一鍵多功能控制
參考資料“單片機(jī)一鍵多功能按鍵識別設(shè)計:http://www.51hei.com/mcu/41.html
本文引用地址:http://m.butianyuan.cn/article/201611/323769.htm效果及簡單的講解:
程序:
#include
sbit LED1=P1^0;
sbit LED2=P1^1;
sbit LED3=P1^2;
sbit key=P3^0;
void main()
{
int temp;
while(1)
{
if(key==0)
{
while(key==0);
{
temp++;
if(temp==1)
{LED1=0;LED3=1;}
if(temp==2)
{
LED1=1;
LED2=0;
}
if(temp==3)
{
LED2=1;
LED3=0;
temp=0;
}
}
}
}
}
評論