Files
Valerii Koval ecc617e341 Add support for IDF v5.0
Resolves #979
2023-01-06 14:29:24 +02:00
..
2018-10-17 21:53:21 +03:00
2023-01-06 14:29:24 +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
2020-09-02 14:54: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-http-request

# Build project
$ pio run

# Upload firmware
$ pio run --target upload

# Build specific environment
$ pio run -e quantum

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

# Clean build files
$ pio run --target clean