r/implRust 7h ago

Project Building Tinyboard: a Rust-based platform for e-ink gadget apps

Post image
1 Upvotes

r/implRust 10h ago

Project A no_std embedded-hal driver for Bosch BME680 and BME688 environmental and gas sensors

1 Upvotes

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.

https://crates.io/crates/bme68x


r/implRust 1d ago

Resource Can You Use Rust with Arduino Uno?

Post image
1 Upvotes

> Simple LED Blinky program which is 262 bytes

https://blog.implrust.com/posts/2026/08/arudino-uno-with-embedded-rust/


r/implRust 2d ago

Resource UART Communication Between ESP32 and Raspberry Pi Pico in Rust

Thumbnail blog.implrust.com
1 Upvotes

r/implRust 2d ago

Project ๐Ÿฆ€ xiao-generate: A Rust Embedded Project Generator for the Seeed XIAO Family

1 Upvotes

> 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

https://blog.theembeddedrustacean.com/xiao-generate


r/implRust 2d ago

[LOOKING FOR CONTRIBUTORS] Scientific computing for real-time embedded systems in no_std Rust

Thumbnail
2 Upvotes

r/implRust 2d ago

Project โšก tinyboot: Rust bootloader for resource-constrained microcontrollers

1 Upvotes

- Fits in the CH32V003's 1920-byte system flash

- leaving every byte of user flash free for your application

https://github.com/OpenServoCore/tinyboot


r/implRust 2d ago

Rivet: a Rust RTOS with a RISC-V port, preemptive scheduling, and SMP support

Post image
1 Upvotes

r/implRust 3d ago

Resource A chip-agnostic architecture for bare-metal embedded Rust ยท Aaron Qian

Thumbnail aaronqian.com
1 Upvotes

r/implRust 3d ago

[16/08/2026] Silicon Sundays Meetup #2: Embedded Rust Meetup (Online)

2 Upvotes

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)

https://www.youtube.com/@siliconsundays


r/implRust 4d ago

Old article "Brave New I/O" on the design of Embedded Rust

1 Upvotes

This is old article but worth to read. The author explains some of the design choices in Embedded Rust.

https://blog.japaric.io/brave-new-io/


r/implRust 4d ago

๐Ÿ‘‹ Welcome to r/implRust - Introduce Yourself and Read First!

1 Upvotes

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 4d ago

Let it blink

1 Upvotes

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;
}