This project is a simple webserver for the ESP32 microcontroller. It uses the PlatformIO build system with the Arduino as a component configuration.
Debugging capabilities for ESP32-S3 are already enabled in platformio.ini
file.
# 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