PsySc0rpi0n
Published

STM32F407VET6 DIYMore.cc board programming

Attempting to program this board for the first time on Linux/Debian using Arduino IDE to compile and dfu-utils to upload

BeginnerProtip1 hour495
STM32F407VET6 DIYMore.cc board programming

Things used in this project

Hardware components

DIYmore.cc STM32F407VET6
×1

Software apps and online services

dfu-util
Arduino IDE
Arduino IDE

Story

Read more

Code

Toggle PC8 at 1Hz

C/C++
It's just a toggling pin at 1Hz. You can check it with a MM
void setup() {
  pinMode(PC8, OUTPUT);
}

void loop() {
  digitalWrite(PC8,HIGH);
  delay(500);
  digitalWrite(PC8,LOW);
  delay(500);
}

Credits

PsySc0rpi0n

PsySc0rpi0n

1 project • 0 followers

Comments