Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)