PlatformIO Olimex E407 Arduino LED 闪烁示例
此代码将使 Olimex E407 LED 闪烁。
blink.cpp
#include <Arduino.h>
void setup() {
pinMode(PC13, OUTPUT);
}
void loop() {
digitalWrite(PC13, LOW);
delay(500);
digitalWrite(PC13, HIGH);
delay(500);
}Check out similar posts by category:
PlatformIO, STM32
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow