Rust Avr

Open-source Rust projects categorized as Avr

Top 6 Rust Avr 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-device

    Register access crate for AVR microcontrollers

  • 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.

    WorkOS logo
  • avr-hal-template

    cargo-generate template for avr-hal projects

  • 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

  • avr-tester

    `#[test]` meets simavr!

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).

Rust Avr related posts

Index

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

Project Stars
1 avr-hal 1,183
2 avr-device 160
3 avr-hal-template 112
4 chirp8-avr 47
5 async-avr 33
6 avr-tester 19

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com