stm32f103c6按键点灯
时间: 2023-08-28 19:07:48 浏览: 87
以下是一个简单的STM32F103C6按键控制LED灯亮灭的示例代码,你可以根据需要进行修改:
```c
#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)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOC, ENABLE);
/* LED 端口初始化 */
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_IPU;
GPIO_Init(BUTTON_PORT, &GPIO_InitStructure);
}
int main(void)
{
GPIO_Config();
while(1)
{
if(GPIO_ReadInputDataBit(BUTTON_PORT, BUTTON_PIN) == 0)
{
GPIO_WriteBit(LED_PORT, LED_PIN, Bit_SET);
}
else
{
GPIO_WriteBit(LED_PORT, LED_PIN, Bit_RESET);
}
}
}
```
在上述代码中,LED使用的是PC13引脚,按键使用的是PA0引脚。GPIO_InitStructure中的参数可以根据需要进行修改,例如将LED设置为GPIO_Mode_Out_OD模式,按键设置为GPIO_Mode_IN_FLOATING模式等等。
阅读全文