4*4键盘函数,STM32F103ZET6

该博客介绍了如何在STM32F103ZET6微控制器上实现4x4矩阵键盘的初始化、扫描和按键处理函数。通过`matrixkey.h`和`matrixkey.c`文件,展示了如何读取GPIO口的按键状态,以及根据按键组合执行相应操作。
摘要由CSDN通过智能技术生成

matrixkey.h头文件

#ifndef __MATRIXKEY_H
#define __MATRIXKEY_H
#include “sys.h”
#include “stm32f10x.h”

#define PortF (GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7)

#define KEY_0 GPIO_ReadInputDataBit(GPIOF,GPIO_Pin_0) //读取按键0
#define KEY_1 GPIO_ReadInputDataBit(GPIOF,GPIO_Pin_1)//读取按键1
#define KEY_2 GPIO_ReadInputDataBit(GPIOF,GPIO_Pin_2)//读取按键2
#define KEY_3 GPIO_ReadInputDataBit(GPIOF,GPIO_Pin_3)//读取按键0
#define KEY_4 GPIO_ReadInputDataBit(GPIOF,GPIO_Pin_4)//读取按键1
#define KEY_5 GPIO_ReadInputDataBit(GPIOF,GPIO_Pin_5)//读取按键2
#define KEY_6 GPIO_ReadInputDataBit(GPIOF,GPIO_Pin_6)//读取按键0
#define KEY_7 GPIO_ReadInputDataBit(GPIOF,GPIO_Pin_7)//读取按键1
//#define KEY_8 GPIO_ReadInputDataBit(GPIOD,GPIO_Pin_4)//读取按键1

#define KEY0_PRES 1 //KEY0按下
#define KEY1_PRES 2 //KEY1按下
#define KEY2_PRES 3 //KEY2按下
#define KEY3_PRES 4 //KEY3按下
#de

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值