求一单片机C语言程序:两个按键控制两个LED KEY1按一下LED1亮 再按一下LED1灭 KEY2按下LED2亮 LED1灭
求一单片机C语言程序:两个按键控制两个LED KEY1按一下LED1亮 再按一下LED1灭 KEY2按下LED2亮 LED1灭
日期:2014-03-03 11:41:40 人气:1
按一下是有Push and Release 事件,要计算bounce?
要用Interrupt 或是Polling?
既然是单片机,就用interrupt表示,再写下流程图,根据流程图写功能程序
BYTE Key1=0,Key2=0;
IRQ Key1(){
Key1++;
}
IRQ Key2(){
Key2=1;
}
while(1){
if(Key1%2){
LED1=on;
}
else{