Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 595 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 595 Bytes

Arduino from Scratch

By Florian "FloRide" Reimat

How to compile

# Setup Project
cmake -S . -B build/

# Compile Project
cmake --build build/

# Flash
cmake --build build/ -- flash

# Flash + Compile
cmake --build build/ -- all flash

Boards

  • Arduino Uno
  • Arduino Mega

Links