求按键去抖程序

2020-02-04 09:33发布

按键去抖动除了用延时去抖外,还有什么程序更容易些?
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
7条回答
614229816
1楼-- · 2020-02-04 11:42
总不能用定时器吧,那资源那么少。我有时用显示子程序当做延迟去抖
Pony279
2楼-- · 2020-02-04 14:17
 精彩回答 2  元偷偷看……
Pony279
3楼-- · 2020-02-04 18:50
用软件延时简直就是浪费CPU的宝贵时间
coleyao
4楼-- · 2020-02-04 20:00
uchar GetKey(void)
{
         static uchar idata KeyCan,KeyMode=0;  
         static uint  idata KeyOnTimer,KeyOffTimer;
         static uchar idata LoopTimer=0;
          
         key_value=P0&0x0f;  key_value^=0x0f;
         if(Ttick_cmp!=Ttick)
                 {
     if((key_value==LastPressedKey)&&(key_value!=0)) KeyOnTimer++;  
     if(!KeyCan&&(key_value==0))  KeyOnTimer=0;
     if(KeyOnTimer==(KeyPressDelayLoop>>5))  KeyCan=1;       

     if((key_value==0))   KeyOffTimer++;   
     if(KeyCan&&(key_value!=0))  KeyOffTimer=0;
     if(KeyOffTimer==(KeyPressDelayLoop>>5))  KeyCan=0;

     if(Ttick_cmp!=Ttick) LoopTimer++;
     if(LoopTimer>160) { LoopTimer=160; Mute_delay++; if(Mute_delay>10)  Mute_delay=10; }

     if((key_value==0)&&(KeyCan==1))  
             {
               if(KeyMode) { Mute_delay=0; LoopTimer=0;  KeyMode=0; KeyCan=0;  BeepOn(5);  return(0); }        
                                   else { Mute_delay=0;  LoopTimer=0;  KeyCan=0;  BeepOn(5);  return(KeyPressMap[LastPressedKey]); }   
             }
     else if((KeyOnTimer>KeyPressDelayLoop)&&(KeyCan==1))  
               {  
                           KeyMode=1;  Mute_delay=0;  KeyOnTimer-=4;     return(KeyLastMap[LastPressedKey]);
               }
             LastPressedKey=key_value;
    }
    return(0);  
}

20ms左右检测一次
614229816
5楼-- · 2020-02-05 01:48
回复【2楼】Pony279  霍斯
-----------------------------------------------------------------------
哦,还是不是很明白协同式的操作系统。学习了
spx_1110
6楼-- · 2020-02-05 01:52
状态机,具体你可以搜一下 马潮老师的文章。说的很详细,我现在都在用状态机,用死等消抖是绝对禁止的,太占CPU资源了

一周热门 更多>