https://github.com/husarnet/platformio-husarnet-webserver
Webserver running under PlatformIO over Husarnet
https://github.com/husarnet/platformio-husarnet-webserver
Last synced: 3 months ago
JSON representation
Webserver running under PlatformIO over Husarnet
- Host: GitHub
- URL: https://github.com/husarnet/platformio-husarnet-webserver
- Owner: husarnet
- Created: 2024-04-05T18:41:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-25T11:24:07.000Z (about 2 years ago)
- Last Synced: 2025-01-16T05:54:33.817Z (over 1 year ago)
- Language: C++
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PlatformIO ESP32 Webserver
This project is a simple webserver for the ESP32 microcontroller. It uses the PlatformIO build system with the [Arduino as a component](https://docs.espressif.com/projects/arduino-esp32/en/latest/esp-idf_component.html) configuration.
Debugging capabilities for ESP32-S3 are already enabled in `platformio.ini` file.
## Quickstart
```shell
# 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
```