帮我写一个基于keil5的何编写程序顺序点亮 4 个 LED函数
时间: 2024-05-05 13:18:39 浏览: 71
LED点亮CAN通信程序.rar
5星 · 资源好评率100%
好的,以下是可以让4个LED顺序点亮的函数:
```
void LED_Sequence(void){
GPIO_PinWrite(LED_PORT, LED_PIN1, 0); //打开第一个LED
GPIO_PinWrite(LED_PORT, LED_PIN2, 1); //关闭第二个LED
GPIO_PinWrite(LED_PORT, LED_PIN3, 1); //关闭第三个LED
GPIO_PinWrite(LED_PORT, LED_PIN4, 1); //关闭第四个LED
Delay(500); //延时500ms
GPIO_PinWrite(LED_PORT, LED_PIN1, 1); //关闭第一个LED
GPIO_PinWrite(LED_PORT, LED_PIN2, 0); //打开第二个LED
Delay(500); //延时500ms
GPIO_PinWrite(LED_PORT, LED_PIN2, 1); //关闭第二个LED
GPIO_PinWrite(LED_PORT, LED_PIN3, 0); //打开第三个LED
Delay(500); //延时500ms
GPIO_PinWrite(LED_PORT, LED_PIN3, 1); //关闭第三个LED
GPIO_PinWrite(LED_PORT, LED_PIN4, 0); //打开第四个LED
Delay(500); //延时500ms
}
```
希望这能帮到你!
阅读全文