资源描述:
《stm32-矩阵键盘程序4×4》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、/**矩阵键盘驱动*文件:keyboard,c*编写人:LiuHui*描述:扫描4x4矩阵键盘输入,并返回键值*适用范I韦I:驱动采用ST3.5库编写,适用于STM32F10X系列单片机*所用引脚:PA0-PA7*编写吋间:2014年5月20日*/include”stm32fl0x.h“#include"keyboard.h"#include"dealy.h"产矩阵键盘初始化*功能:初始化stm32单片机GPIO//PA0-PA7*参数传递:*输入:无*返回值:无*/voidKeyBoard」nit(void){GPIO_InitTyp
2、eDefGPIO」niiS(mcture;GPIOInitStructure.GPIOPin=GPIOPin0
3、GPIOPin1
4、GPIOPin2
5、GPIOPin3;GPIO_InitStructure.GPIO_Speed=GPIO_Speed_10MHz;GPIO」nitStructure.GPlO_Mode=GPIO_Mode_Out_PP;GPIO」nit(GPIOA,&GPIO」nitStruc(urc);GPIOInitStructure.GPIOPin=GPIOPin4
6、GPIOPin5
7、GPIOPin6
8、GPIOPin7
9、;GPIO_InitStructure.GPIO_Speed=GPIO_Speed_10MHz;GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IPD;GPIO」nit(GPIOA,&GPIOJnitStructure);GPIO_SetBits(GPIOA,GPIO_Pin_0
10、GPIO_Pin_l
11、GPIO_Pin_2
12、GPIO_Pin_3);GPIO_ResetBits(GPIOA,GPIO_Pin_4
13、GPIO_Pin_5
14、GPIO_Pin_6
15、GFIO_Pin_7);}/*矩阵键盘扫描*功能:扫描
16、矩阵键盘,并返回键值*参数:*输入:无*返回:有键按下返回该键值*无键按下时则返回0*/u8Read_KeyValue(void){u8KeyValue=0;if((GPIO_ReadInputData(GPIOA)&Oxff)!二OxOf)Delay_ms(10);if((GPIO_ReadInputData(GPIOA)&0xff)!=0x0f){GPIO_SetBits(GPIOA,GPIO_Pin_0);GPIO_ResetBits(GPIOA,GPIO_Pin_l
17、GPIO_Pin_2
18、GPIO_Pin_3);switch(G
19、PIO_ReadInputData(GPIOA)&Oxff){caseOxll:KeyValue=1;break;case0x21:KeyValue=5;break;case0x41:KeyValue=9;break;case0x81:KeyValue=13;break;}GPIO_SetBits(GPIOA,GPIO_Pin_l);GPIO_ResetBits(GPIOA,GPIO_Pin_0
20、GPIO_Pin_2
21、GPIO_Pin_3);switch(GPIO_ReadInputData(GPIOA)&Oxff){caseOx12:
22、KeyValue=2;break;case0x22:KeyValue=6;break;case0x42:KeyValue=10;break;case0x82:KeyValue=14;break;}GPIO_SetBits(GPIOA,GPIO_Pin_2);GPIO_ResetBits(GPIOA,GPIO_Pin_0
23、GPIO_Pin_l
24、GPI0_Pin_3);switch(GPIO_ReadlnputData(GPIOA)&Oxff){case0x14:KeyValue=3;break;case0x24:KeyValue=7;br
25、eak;case0x44:KeyValue=11;break;case0x84:KeyValue=15;break;}GPIO_SetBits(GPIOA,GPIO_Pin_3);GPIO_ResetBits(GPIOA,GPIO_Pin_0
26、GPIO_Pin_l
27、GPI0_Pin_2);switch(GPIO_ReadInputDtita(GPIOA)&Oxff){case0x18:KeyValue=4;break;case0x28:KeyValue=&break;case0x4&KeyValue=12;break;case0x8&K
28、eyValue=16;break;}GPIO_SetBits(GPIOA,GPIO_Pin_0
29、GPIO_Pin_l
30、GPIO_Pin_2
31、GPIO_Pin_3);GPIO_ResetBits(GPIOA,