Skip to content
This repository was archived by the owner on Nov 19, 2025. It is now read-only.

Latest commit

 

History

History
28 lines (18 loc) · 558 Bytes

File metadata and controls

28 lines (18 loc) · 558 Bytes

Robotik Arduino Sources

This repository contains the sources for the controller used by team Kraft auf Fläche

Development process

Tools

  • Preferred: PlatformIO IDE for vscode

Code quality assurance

# Static code analysis
pio check

# run unit tests (for UNO)
pio test -e unotest -v

# runn unit tests (for kieblitz)
pio test -e wemos_d1_mini32

# ci commands
pio ci --board=uno --lib="." --exclude="src/test" .
pio ci --board=megaatmega2560 --lib="." --exclude="src/test" .
pio ci --board=wemos_d1_mini32 --lib="." .