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