DEV_semaphore/.platformio/platforms/espressif32/examples/espidf-arduino-blink
David Diaz d76c8bc3c5 Initial commit 2024-07-27 16:03:03 +02:00
..
include Initial commit 2024-07-27 16:03:03 +02:00
lib Initial commit 2024-07-27 16:03:03 +02:00
src Initial commit 2024-07-27 16:03:03 +02:00
test Initial commit 2024-07-27 16:03:03 +02:00
.gitignore Initial commit 2024-07-27 16:03:03 +02:00
.travis.yml Initial commit 2024-07-27 16:03:03 +02:00
CMakeLists.txt Initial commit 2024-07-27 16:03:03 +02:00
README.md Initial commit 2024-07-27 16:03:03 +02:00
platformio.ini Initial commit 2024-07-27 16:03:03 +02:00
sdkconfig.defaults Initial commit 2024-07-27 16:03:03 +02:00

README.md

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-arduino-blink

# 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