基于stm32f103c8t6的流水灯
时间: 2023-12-27 17:25:34 浏览: 98
基于STM32F103C8T6的流水灯可以通过C语言来实现。下面是一个简单的流水灯实现的示例代码:
```c
#include "stm32f10x.h"
void delay(uint32_t time) {
while(time--);
}
int main(void) {
GPIO_InitTypeDef GPIO_InitStructure;
// 使能GPIOC的时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
// 配置GPIOC的引脚为推挽输出模式
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
while(1) {
// 点亮LED1
GPIO_SetBits(GPIOC, GPIO_Pin_13);
delay(1000000);
// 熄灭LED1,点亮LED2
GPIO_ResetBits(GPIOC, GPIO_Pin_13);
GPIO_SetBits(GPIOC, GPIO_Pin_14);
delay(1000000);
// 熄灭LED2,点亮LED3
GPIO_ResetBits(GPIOC, GPIO_Pin_14);
GPIO_SetBits(GPIOC, GPIO_Pin_15);
delay(1000000);
// 熄灭LED3
GPIO_ResetBits(GPIOC, GPIO_Pin_15);
delay(1000000);
}
}
```
这段代码使用了STM32的库函数来配置GPIO引脚,并通过循环实现了流水灯的效果。具体的实现原理可以参考博客:https://blog.csdn.net/geek_monkey/article/details/86291377。
阅读全文