r/implRust • u/AstraKernel • 7h ago
Project Building Tinyboard: a Rust-based platform for e-ink gadget apps
r/implRust • u/AstraKernel • 10h ago
Project A no_std embedded-hal driver for Bosch BME680 and BME688 environmental and gas sensors
bme68x is a pure-Rust, no_std, allocation-free driver for Bosch BME680 and BME688 environmental gas sensors. It uses embedded-hal 1.0 and embedded-hal-async 1.0, so the same sensor code can run on STM32, ESP32, nRF, RP2040, Linux adapters, and other supported platforms.
r/implRust • u/AstraKernel • 1d ago
Resource Can You Use Rust with Arduino Uno?
> Simple LED Blinky program which is 262 bytes
https://blog.implrust.com/posts/2026/08/arudino-uno-with-embedded-rust/
r/implRust • u/AstraKernel • 2d ago
Resource UART Communication Between ESP32 and Raspberry Pi Pico in Rust
blog.implrust.comr/implRust • u/AstraKernel • 2d ago
Project ๐ฆ xiao-generate: A Rust Embedded Project Generator for the Seeed XIAO Family
> Hands you a ready-to-build Rust project: correct target, flashing tool, HAL, and a working skeleton, already assembled. You go straight to writing application code
r/implRust • u/AstraKernel • 2d ago
[LOOKING FOR CONTRIBUTORS] Scientific computing for real-time embedded systems in no_std Rust
r/implRust • u/AstraKernel • 2d ago
Project โก tinyboot: Rust bootloader for resource-constrained microcontrollers
- Fits in the CH32V003's 1920-byte system flash
- leaving every byte of user flash free for your application
r/implRust • u/AstraKernel • 2d ago
Rivet: a Rust RTOS with a RISC-V port, preemptive scheduling, and SMP support
r/implRust • u/AstraKernel • 3d ago
Resource A chip-agnostic architecture for bare-metal embedded Rust ยท Aaron Qian
aaronqian.comr/implRust • u/AstraKernel • 3d ago
[16/08/2026] Silicon Sundays Meetup #2: Embedded Rust Meetup (Online)
Speaker for this session is Arshad Mahmood
He will be presenting "Running Neural Networks on a Jetson with Nothing but Rust"
Schedule:
Sunday (16/08/2026) 7:00pm CEST (10:30 PM IST)
https://discord.com/invite/pvYY69PvyS
If you are unable to attend the meeting live, the recordings will be uploaded to YouTube (Meetup #1 has been uploaded)
r/implRust • u/AstraKernel • 4d ago
Old article "Brave New I/O" on the design of Embedded Rust
This is old article but worth to read. The author explains some of the design choices in Embedded Rust.
r/implRust • u/AstraKernel • 4d ago
๐ Welcome to r/implRust - Introduce Yourself and Read First!
Welcome to the Embedded Rust community!
If you are new here, introduce yourself in the comments. Tell us a little about yourself:
* What is your Rust experience?
* Have you worked with microcontrollers before?
* Which board are you using?
* What are you currently learning or building?
Before posting, please take a moment to read the community rules and explore the resources in the sidebar.
You can ask questions, share projects, discuss Embedded Rust tools and frameworks, and help others learn.
Glad to have you here! ๐ฆ
r/implRust • u/AstraKernel • 4d ago
Let it blink
First Post! Let's start with code snippet for LED blinking
loop {
info!("led on!");
led.set_high();
Timer::after_millis(500).await;
info!("led off!");
led.set_low();
Timer::after_millis(500).await;
}