当前位置:   article > 正文

STM32f1之4*4矩阵键盘_4*4矩阵按键

4*4矩阵按键

目录

前言

一、4*4矩阵键盘的使用

二、代码部分

三、总结


前言

4*4矩阵键盘对于实验来说必不可少,那么如何实现矩阵键盘基本功能呢?今天就简单地介绍一下如何利用矩阵键盘和LCD显示出对应的键值,直接进入主题。

一、4*4矩阵键盘的使用

首选,了解它的原理很重要,但在了解它的原理之前,先来看看它的样子。

我们可以看到,4*4的矩阵键盘对应有16个按键,分别对应键值0~15(也可以自己设定),然后你会看到它有8个引脚,其中四个是行控制引脚,四个是列控制引脚 

查看源图像

上面就是它的主要原理图了

在8个接口上,很明显的标出来C1~4和R1~4,C是column(列),R是row(行)

它的扫描原理就是通过高四位输出高电平来对矩阵键盘进行逐行扫描,当低四位接收到的数据不全为1的时候,说明有按键按下,然后通过接收到的数据是哪一位为0来判断是哪一行按键被按下。

二、代码部分

下面这个代码部分比较简单,就不一一详解了,大家可以自己解读一下,或者在评论区发表

  1. #include "sys.h"
  2. #include "kyscan.h"
  3. #include "delay.h"
  4. #include "lcd.h"
  5. void KEY1_Init(void)
  6. {
  7. GPIO_InitTypeDef GPIO_InitStructure;
  8. RCC_APB2PeriphClockCmd (RCC_APB2Periph_GPIOA|RCC_APB2Periph_GPIOB,ENABLE);//??GPIOA?B
  9. GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IPU;//????
  10. GPIO_InitStructure.GPIO_Pin=GPIO_Pin_12|GPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15;
  11. GPIO_Init(GPIOB,&GPIO_InitStructure);
  12. GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP; //????
  13. GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
  14. GPIO_InitStructure.GPIO_Pin=GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7;
  15. GPIO_Init(GPIOA,&GPIO_InitStructure);
  16. GPIO_ResetBits(GPIOA,GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7); //??????,???
  17. }
  18. void KEY2_Init(void)
  19. {
  20. GPIO_InitTypeDef GPIO_InitStructure;
  21. RCC_APB2PeriphClockCmd (RCC_APB2Periph_GPIOA|RCC_APB2Periph_GPIOB,ENABLE);
  22. GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP; //????
  23. GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
  24. GPIO_InitStructure.GPIO_Pin=GPIO_Pin_12|GPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15;
  25. GPIO_Init(GPIOB,&GPIO_InitStructure);
  26. GPIO_SetBits(GPIOB,GPIO_Pin_12|GPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15); //???
  27. GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IPD; //????
  28. GPIO_InitStructure.GPIO_Pin=GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7;
  29. GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
  30. GPIO_Init(GPIOA,&GPIO_InitStructure);
  31. }
  32. int KeyScan(void)
  33. {
  34. u8 column=0;
  35. u8 KeyValue=0;
  36. KEY1_Init(); //??????,???
  37. if(PBin(12)==0)
  38. {
  39. delay_ms(50);
  40. if(PBin(12)==0)
  41. {
  42. column=1; //???
  43. }
  44. }
  45. if(PBin(13)==0)
  46. {
  47. delay_ms(50);
  48. if(PBin(13)==0)
  49. {
  50. column=2; //???
  51. }
  52. }
  53. if(PBin(14)==0)
  54. {
  55. delay_ms(50);
  56. if(PBin(14)==0)
  57. {
  58. column=3; //???
  59. }
  60. }
  61. if(PBin(15)==0)
  62. {
  63. delay_ms(50);
  64. if(PBin(15)==0)
  65. {
  66. column=4; //???
  67. }
  68. }
  69. if(column==1)
  70. {
  71. KEY2_Init(); //??????,???
  72. if(PAin(7)==1) //??????
  73. {
  74. KeyValue=0;
  75. }
  76. if(PAin(6)==1) //??????
  77. {
  78. KeyValue=4;
  79. }
  80. if(PAin(5)==1) //??????
  81. {
  82. KeyValue=8;
  83. }
  84. if(PAin(4)==1) //??????
  85. {
  86. KeyValue=12;
  87. }
  88. }
  89. if(column==2)
  90. {
  91. KEY2_Init(); //????
  92. if(PAin(7)==1)
  93. {
  94. KeyValue=1;
  95. }
  96. if(PAin(6)==1)
  97. {
  98. KeyValue=5;
  99. }
  100. if(PAin(5)==1)
  101. {
  102. KeyValue=9;
  103. }
  104. if(PAin(4)==1)
  105. {
  106. KeyValue=13;
  107. }
  108. }
  109. if(column==3)
  110. {
  111. KEY2_Init();
  112. if(PAin(7)==1)
  113. {
  114. KeyValue=2;
  115. }
  116. if(PAin(6)==1)
  117. {
  118. KeyValue=6;
  119. }
  120. if(PAin(5)==1)
  121. {
  122. KeyValue=10;
  123. }
  124. if(PAin(4)==1)
  125. {
  126. KeyValue=14;
  127. }
  128. }
  129. if(column==4)
  130. {
  131. KEY2_Init();
  132. if(PAin(7)==1)
  133. {
  134. KeyValue=3;
  135. }
  136. if(PAin(6)==1)
  137. {
  138. KeyValue=7;
  139. ;
  140. }
  141. if(PAin(5)==1)
  142. {
  143. KeyValue=11;
  144. }
  145. if(PAin(4)==1)
  146. {
  147. KeyValue=15;
  148. }
  149. }
  150. return KeyValue;
  151. }

这里其实就是采用了扫描的方式,所以可能会有一定的延迟,大家可以采用中断的方式会更快。

对了,我定义是先扫描列,因此这里列我是接PB12~15。

下面附上头文件

  1. #ifndef __KY_H
  2. #define __KY_H
  3. #include "sys.h"
  4. void KEY1_Init(void);
  5. void KEY2_Init(void);
  6. int KeyScan(void);
  7. int KeyScan2(void);
  8. #endif

三、总结

今天这一讲是比较简单的,下面会附上实现图,希望对大家有所帮助,谢谢每一位访客

如图,按下键后返回键值并显示出来,大家可以尝试一下。欢迎收藏关注!

 

题外话:

挺喜欢彭于晏说的一句话:“我就是没有才华,所以才用命去拼!”

学习32之路固然辛苦,但要是坚持下来了,那不是很酷?哈哈哈

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/431227
推荐阅读
相关标签
  

闽ICP备14008679号