Files
Valerii Koval 4a461f5221 Update examples
2023-01-06 14:29:59 +02:00
..
2018-10-17 21:53:21 +03:00
2023-01-06 14:29:59 +02:00
2020-09-01 17:54:55 +03:00
2022-03-31 14:23:26 +03:00
2022-03-31 14:23:26 +03:00

How to build PlatformIO based project

  1. Install PlatformIO Core
  2. Download development platform with examples
  3. Extract ZIP archive
  4. Run these commands:
# Change directory to example
$ cd platform-espressif32/examples/espidf-peripherals-uart

# Build project
$ pio run

# Upload firmware
$ pio run --target upload

# Build specific environment
$ pio run -e esp32dev

# Upload firmware for the specific environment
$ pio run -e esp32dev --target upload

# Clean build files
$ pio run --target clean