stm32f103rct6按键控制LED代码
时间: 2023-09-07 17:11:05 浏览: 116
stm32 按键和LED控制
以下是stm32f103rct6按键控制LED的代码:
```
#include "stm32f10x.h"
#define LED_PIN GPIO_Pin_13
#define LED_PORT GPIOC
#define BUTTON_PIN GPIO_Pin_0
#define BUTTON_PORT GPIOA
void GPIO_Config(void);
void delay(uint32_t time);
int main(void)
{
GPIO_Config();
while(1)
{
if(GPIO_ReadInputDataBit(BUTTON_PORT, BUTTON_PIN) == 0)
{
GPIO_SetBits(LED_PORT, LED_PIN);
}
else
{
GPIO_ResetBits(LED_PORT, LED_PIN);
}
}
}
void GPIO_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOC, ENABLE);
GPIO_InitStructure.GPIO_Pin = LED_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(LED_PORT, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = BUTTON_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(BUTTON_PORT, &GPIO_InitStructure);
}
void delay(uint32_t time)
{
while(time--);
}
```
这个代码中,我们使用了stm32f10x库来进行GPIO的初始化和控制。在代码中,我们首先定义了LED和按键的引脚和端口,然后在GPIO_Config函数中初始化了这些引脚和端口。在主函数中,我们不断地检测按键的状态,如果按键被按下,就点亮LED,否则就熄灭LED。我们还定义了一个简单的延时函数来进行延时。
阅读全文