https://github.com/ctron/rust-esp32-hono
HTTP with Rust on ESP32
https://github.com/ctron/rust-esp32-hono
esp32 esp32-idf http iot rust
Last synced: 12 months ago
JSON representation
HTTP with Rust on ESP32
- Host: GitHub
- URL: https://github.com/ctron/rust-esp32-hono
- Owner: ctron
- Created: 2019-06-20T19:53:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-18T19:59:20.000Z (over 6 years ago)
- Last Synced: 2025-04-01T08:25:49.366Z (about 1 year ago)
- Topics: esp32, esp32-idf, http, iot, rust
- Language: Rust
- Homepage:
- Size: 279 KB
- Stars: 19
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust ESP32 project template
This is a project template for the use of [ctron/rust-esp-container](https://github.com/ctron/rust-esp-container).
Build with:
docker run -v $PWD:/home/project:z --rm -ti quay.io/ctron/rust-esp xbuild-project
On Windows:
docker run -v %CD%:/home/project --rm -ti quay.io/ctron/rust-esp xbuild-project
Flash with:
esptool.py --chip esp32 --baud 115200 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 40m --flash_size detect 0x1000 build/bootloader/bootloader.bin 0x10000 esp-app.bin 0x8000 build/partitions_singleapp.bin