STM32-矩阵键盘程序4×.docx

STM32-矩阵键盘程序4×.docx

ID:62496394

大小:20.47 KB

页数:11页

时间:2021-05-10

STM32-矩阵键盘程序4×.docx_第1页
STM32-矩阵键盘程序4×.docx_第2页
STM32-矩阵键盘程序4×.docx_第3页
STM32-矩阵键盘程序4×.docx_第4页
STM32-矩阵键盘程序4×.docx_第5页
资源描述:

《STM32-矩阵键盘程序4×.docx》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、/**文件:*编写人:LiuHui*描述:扫描4x4矩阵键盘输入,并返回键值*适用范围:驱动采用库编写,适用于STM32F10X系列单片机*所用引脚:PA0-PA7*编写时间:2014年5月20日*/#include""#include""#include""/*矩阵键盘初始化*功能:初始化stm32单片机GPIO//PAO-PA7*参数传递:*输入:无*返回值:无*/voidKeyBoard」nit(void)GPIO_InitTypeDefGPIO_InitStructure;=GPIO_Pin_0

2、GPIO_Pin_1

3、GPIO_Pin_2

4、GP

5、IO_Pin_3;=GPIO_Speed_10MHz;=GPIO_Mode_Out_PP;GPIO_Init(GPIOA,&GPIO_InitStructure);=GPIO_Pin_4

6、GPIO_Pin_5

7、GPIO_Pin_6

8、GPIO_Pin_7;=GPIO_Speed_10MHz;=GPIO_Mode_IPD;GPIO_Init(GPIOA,&GPIO_InitStructure);GPIO_SetBits(GPIOA,GPIO_Pin_0

9、GPIO_Pin_1

10、GPIO_Pin_2

11、GPIO_Pin_3);GPIO_ResetBits(GPI

12、OA,GPIO_Pin_4

13、GPIO_Pin_5

14、GPIO_Pin_6

15、GPIO_Pin_7);}/*矩阵键盘扫描*功能:扫描矩阵键盘,并返回键值*参数:*输入:无*返回:有键按下返回该键值*无键按下时则返回0*/u8Read_KeyValue(void){u8KeyValue=0;if((GPIO_ReadInputData(GPIOA)&0xff)!=0x0f){Delay_ms(10);if((GPIO_ReadInputData(GPIOA)&0xff)!=0x0f){GPIO_SetBits(GPIOA,GPIO_Pin_0);GPIO_Re

16、setBits(GPIOA,GPIO_Pin_1

17、GPIO_Pin_2

18、GPIO_Pin_3);switch(GPIO_ReadInputData(GPIOA)&0xff){case0x11:KeyValue=1;break;case0x21:KeyValue=5;break;case0x41:KeyValue=9;break;case0x81:KeyValue=13;break;}GPIO_SetBits(GPIOA,GPIO_Pin_1);GPIO_ResetBits(GPIOA,GPIO_Pin_0

19、GPIO_Pin_2

20、GPIO_Pin_3);

21、switch(GPIO_ReadInputData(GPIOA)&0xff){case0x12: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

22、GPIO_Pin_1

23、GPIO_Pin_3);switch(GPIO_ReadInputData(GPIOA)&0xff){case0x14

24、:KeyValue=3;break;case0x24:KeyValue=7;break;case0x44:KeyValue=11;break;case0x84:KeyValue=15;break;}GPIO_SetBits(GPIOA,GPIO_Pin_3);GPIO_ResetBits(GPIOA,GPIO_Pin_0

25、GPIO_Pin_1

26、GPIO_Pin_2);switch(GPIO_ReadInputData(GPIOA)&0xff){case0x18:KeyValue=4;break;case0x28:KeyValue=8;break;cas

27、e0x48:KeyValue=12;break;case0x88:KeyValue=16;break;}GPIO_SetBits(GPIOA,GPIO_Pin_0

28、GPIO_Pin_1

29、GPIO_Pin_2

30、GPIO_Pin_3);GPIO_ResetBits(GPIOA,GPIO_Pin_4

31、GPIO_Pin_5

32、GPIO_Pin_6

33、GPIO_Pin_7);while((GPIO_ReadInputData(GPIOA)&0xff)!=0x0f);returnKeyValue;return0;}/*THEEND*//**矩阵键盘驱动*文件:*编写人

34、:LiuHui*描述:扫描4x4矩阵键盘输入,并返回键值*适用范围:驱动为库编写,适用于STM

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。