Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/snasirca/rust-esp32-c3-blinky
A Rust project that uses pin GPIO4 on an ESP32-C3 board to blink an LED and print some text to the serial bus.
https://github.com/snasirca/rust-esp32-c3-blinky
esp32 esp32c3 rust rust-em
Last synced: 3 months ago
JSON representation
A Rust project that uses pin GPIO4 on an ESP32-C3 board to blink an LED and print some text to the serial bus.
- Host: GitHub
- URL: https://github.com/snasirca/rust-esp32-c3-blinky
- Owner: snasirca
- Created: 2022-07-01T19:04:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-27T17:05:45.000Z (over 2 years ago)
- Last Synced: 2024-09-29T18:47:11.191Z (4 months ago)
- Topics: esp32, esp32c3, rust, rust-em
- Language: Rust
- Homepage:
- Size: 6.84 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust ESP32-C3 Blinky
An example Rust project that uses pin GPIO4 on an ESP32-C3 board to blink an LED and print some text to the serial bus.
To flash this project, run this command:
cargo espflash /dev/cu.usbserial-220 --monitor --speed 921600
Substitute with the device name of your board.
## Additional Examples
* Demonstrates how to connect to a Wifi network
* Demonstrates how to publish an MQTT message
* Demonstrates how to go to deep sleep## Credits
This project has been heavily inspired by the [Rust on ESP32 STD demo app](https://github.com/ivmarkov/rust-esp32-std-demo#rust-on-esp32-std-demo-app)