/* STM32 Blue Pill project using the STM32 Arduino Core (stm32duino) */
void setup() {
pinMode(PC13,OUTPUT);
}
void loop() {
digitalWrite(PC13, LOW);
delay(500);
digitalWrite(PC13, HIGH);
delay(500);
}
/* STM32 Blue Pill project using the STM32 Arduino Core (stm32duino) */
void setup() {
pinMode(PC13,OUTPUT);
}
void loop() {
digitalWrite(PC13, LOW);
delay(500);
digitalWrite(PC13, HIGH);
delay(500);
}