基于STM32F103实现通过开关量控制led亮灭的程序
时间: 2024-02-05 10:11:23 浏览: 85
下面是基于STM32F103实现通过开关量控制LED亮灭的程序:
```c
#include "stm32f10x.h"
int main(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
//使能GPIOC时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
//配置PC13引脚为推挽输出
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
//使能GPIOA时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_Init(GPIOA, &GPIO_InitStructure);
//配置PA0引脚为上拉输入
while (1)
{
if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_0) == 0)
//PA0引脚输入低电平
{
GPIO_WriteBit(GPIOC, GPIO_Pin_13, Bit_SET);
//PC13引脚输出高电平,点亮LED
}
else
{
GPIO_WriteBit(GPIOC, GPIO_Pin_13, Bit_RESET);
//PC13引脚输出低电平,熄灭LED
}
}
}
```
程序的实现过程为:首先配置PC13引脚为推挽输出,即LED引脚,然后配置PA0引脚为上拉输入,即开关引脚,然后进入while循环,不断读取PA0引脚的状态,如果为低电平,就点亮LED,否则熄灭LED。
阅读全文