- Install PlatformIO
- Download examples source code
- Extract ZIP archive
- Run these commands:
# Change directory to example
> cd platformio-examples/atmelavr-and-arduino/arduino-blink
# Build project
> platformio run
# Upload firmware
> platformio run --target upload
# Build specific environment
> platformio run -e flora8
# Upload firmware for the specific environment
> platformio run -e flora8 --target upload
# Clean build files
> platformio run --target clean