欢迎来到天天文库
浏览记录
ID:27484778
大小:47.50 KB
页数:8页
时间:2018-12-04
《51单片机键盘扫描程序解析.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、51单片机键盘扫描程序解析 /****************************************键盘_不采用定时器_不延时特点:按键在松手后有效,灵敏度高,消耗资源少,运行效率高独立键盘为:K01=P2;K02=P2;K03=P2;K04=P2;矩阵键盘为:行(上到下)_P2.3_P2.2_P2. /**************************************** 键盘_不采用定时器_不延时 特点: 按键在松手后有效,灵敏度高,消耗资源少,运行效率高 独立键盘为:K01=P2;K02=P2;K03=P2;K0
2、4=P2; 矩阵键盘为:行(上到下)_P2.3_P2.2_P2.1_P2.0 列(左到右)_P2.7_P2.6_P2.5_P2.4 提供的操作函数: //独立键盘。无按键动作时其返回值num_key=0,否则返回按键号num_key externunsignedcharkeyboard_self(); //矩阵键盘。无按键动作时其返回值num_key=0,否则返回按键号num_key****检测高四位 externunsignedcharkeyboard_matrix(); **************************************
3、**/ 。 先看独立键盘(和矩阵键盘的算法一样) ----------------------------------------------------------------------- #include #include //独立键盘。无按键动作时其返回值num_key=0,否则返回按键号num_key externunsignedcharkeyboard_self() { unsignedcharnum_key=0;//按键号 unsignedchartemp=0;//用于读取P2线上按键值 staticunsignedchartemp
4、_code=0;//保存按键值 staTIcunsignedcharnum_check=0;//低电平有效次数 staTIcunsignedcharkey_flag=0;//按键有效标识 temp=P2&0xF0;//读取P2线数据 if(temp!=0xF0)//低电平判断 { num_check++; if(num_check==10)//连续10次(10ms)低电平有效,则认为按键有效 { key_flag=1;//使能按键有效标识 temp_code=temp;//保存按键值 } } else//松手时判断 { num_check
5、=0; if(key_flag==1)//按键有效 { key_flag=0; switch(temp_code)//读取按键号 { case0xE0:num_key=1; break; case0xD0:num_key=2; break; case0xB0:num_key=3; break; case0x70:num_key=4; break; } } } return(num_key); } 现在是矩阵键盘的 ----------------------------------------------------------
6、------------- #include #include //矩阵键盘。无按键动作时其返回值num_key=0,否则返回按键号num_key****检测高四位 externunsignedcharkeyboard_matrix() { unsignedcharnum_key=0;//按键号 unsignedchartemp=0;//读取P2口线数据 staTIcunsignedchartemp_code=0;//用于保存按键值 staTIcunsignedchartemp_circle=0xFE;//保存P2线上的循环扫描值 staticun
7、signedcharnum_check=0;//低电平计数 staticunsignedcharkey_flag=0;//按键有效标识 P2=temp_circle;//0xFX temp=P2;//读取P2口线数据 if(temp!=temp_circle)//有按键动作 { num_check++;//低电平计数
8、逢低电平加1 if(num_check==10)//连续10次(10ms)低电平有效 { key_flag=1;//按键有效标识置1 temp_code=temp;//保存按键值 } } else//松手OR无
此文档下载收益归作者所有