Rust Arduino

Open-source Rust projects categorized as Arduino

Top 7 Rust Arduino Projects

  • avr-hal

    embedded-hal abstractions for AVR microcontrollers

    Project mention: Arduino Uno issue with interfacing with a dht11 sensor. | /r/rust | 2023-07-04

    /* * For examples (and inspiration), head to * * https://github.com/Rahix/avr-hal/tree/main/examples * * NOTE: Not all examples were ported to all boards! There is a good chance though, that code * for a different board can be adapted for yours. The Arduino Uno currently has the most * examples available. */ #![no_std] #![no_main] use dht_sensor::*; use panic_halt as _; #[arduino_hal::entry] fn main() -> ! { let dp = arduino_hal::Peripherals::take().unwrap(); let pins = arduino_hal::pins!(dp); let mut serial = arduino_hal::default_serial!(dp, pins, 57200); let mut pin3 = pins.d3.into_opendrain_high(); let mut delay = arduino_hal::Delay::new(); ufmt::uwriteln!(serial, "{}", "waiting for sensor...").unwrap(); arduino_hal::delay_ms(2000); loop { match dht11::Reading::read(&mut delay, &mut pin3) { Ok(dht11::Reading { temperature, relative_humidity, }) => ufmt::uwriteln!(serial, "{}°, {}% RH", temperature, relative_humidity).unwrap(), Err(_e) => ufmt::uwriteln!(serial, "Error {}", "Unable to read").unwrap(), } arduino_hal::delay_ms(2000); } }

  • avr-hal-template

    cargo-generate template for avr-hal projects

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

  • chirp8-avr

    CHIP-8 implementation in Rust targeting AVR microcontrollers

    Project mention: Looking for Feedback on a Long-Term Plan | /r/EmuDev | 2023-06-05
  • async-avr

    async/await for AVR with Rust

  • h7-bootloader-rev

  • tea-whistle

    A simple microcontroller project to make an annoying sound when water is boiling

  • orient-beetle

    cloud based messaging display

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2023-07-04.

Rust Arduino related posts

Index

What are some of the best open-source Arduino projects in Rust? This list will help you:

Project Stars
1 avr-hal 1,158
2 avr-hal-template 104
3 chirp8-avr 47
4 async-avr 32
5 h7-bootloader-rev 9
6 tea-whistle 6
7 orient-beetle 0
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com