按钮实验
在STM32单片机的GPIO按钮实验中,我们通常会配置一个GPIO引脚为输入模式,并连接一个按钮到该引脚。通过读取该引脚的电平状态,我们可以判断按钮是否被按下。
LED接线方法
在文章STM32学习(二)中已经介绍了开漏接法的实现,这里就简单介绍推挽方法
接线图
实现代码
int main()
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_SET);
}
按钮接线方法
原理图
当开关断开时,芯片引脚属于浮空状态。在上拉模式下芯片读到的数据是1,按下开关时芯片读到的数据0
接线图
实现代码
int main()
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_SET);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_Init(GPIOA, &GPIO_InitStructure);
while(1){
if(GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_1) == Bit_RESET){
GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_SET);
}else{
GPIO_WriteBit(GPIOA,GPIO_Pin_0,Bit_RESET);
}
}
}
函数介绍
GPIO_ReadInputDataBit
函数用于读取指定GPIO端口的某个特定位(引脚)的输入数据状态。这个函数是STM32标准外设库中的一部分,可以方便地用于检测GPIO引脚的电平状态,例如判断一个按钮是否被按下。
uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
GPIOx
:指定要读取的GPIO端口,例如GPIOA、GPIOB等。GPIO_Pin
:指定要读取的引脚,例如GPIO_Pin_0、GPIO_Pin_1等。
返回值
- 返回
Bit_SET
(通常为1)表示引脚为高电平。 - 返回
Bit_RESET
(通常为0)表示引脚为低电平。