stm32两个按键开启对led灯的控制
时间: 2023-09-17 20:12:13 浏览: 96
stm32f407zet6---自动灯光调节(光敏电阻),stm32f407按键控制led灯,C,C++
5星 · 资源好评率100%
好的,下面是基于STM32的两个按键开启控制LED灯的代码:
```c
#include "stm32f4xx.h"
void delay(uint32_t time)
{
while(time--);
}
int main()
{
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOD, ENABLE);
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
//配置PD12、PD13、PD14和PD15引脚为输出模式
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12 | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOD, &GPIO_InitStructure);
//配置PA0和PA1引脚为输入模式
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN;
GPIO_Init(GPIOA, &GPIO_InitStructure);
while(1)
{
//读取PA0和PA1引脚的状态
uint8_t button1 = GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_0);
uint8_t button2 = GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_1);
//如果按键1被按下,点亮PD12和PD13引脚,熄灭PD14和PD15引脚
if(button1 == GPIO_Pin_0)
{
GPIO_SetBits(GPIOD, GPIO_Pin_12 | GPIO_Pin_13);
GPIO_ResetBits(GPIOD, GPIO_Pin_14 | GPIO_Pin_15);
}
//如果按键2被按下,点亮PD14和PD15引脚,熄灭PD12和PD13引脚
else if(button2 == GPIO_Pin_1)
{
GPIO_SetBits(GPIOD, GPIO_Pin_14 | GPIO_Pin_15);
GPIO_ResetBits(GPIOD, GPIO_Pin_12 | GPIO_Pin_13);
}
//否则熄灭全部引脚
else
{
GPIO_ResetBits(GPIOD, GPIO_Pin_12 | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15);
}
delay(100000);
}
}
```
这段代码使用了GPIOA的PA0和PA1作为两个输入按键,使用了GPIOD的PD12、PD13、PD14和PD15引脚作为LED灯的控制引脚。程序会不断循环读取PA0和PA1引脚的状态,如果按键1被按下则点亮PD12和PD13引脚,熄灭PD14和PD15引脚;如果按键2被按下则点亮PD14和PD15引脚,熄灭PD12和PD13引脚;否则熄灭全部引脚。
阅读全文