#raspberry-pi #raspberry #pi #temperature-humidity #humidity-sensor

no-std rppal-dht11

Raspberry Pi Rust driver for the DHT11 temperature and humidity sensor

2 unstable releases

0.4.0 Apr 20, 2022
0.3.1 Apr 20, 2022

#1151 in Embedded development

Download history 6/week @ 2024-01-14 2/week @ 2024-01-21 17/week @ 2024-02-18 31/week @ 2024-02-25 11/week @ 2024-03-03 14/week @ 2024-03-10

73 downloads per month

MIT/Apache

7KB
111 lines

rppal-dht11-rs

crates.io badge docs.rs badge

Raspberry Pi Rust driver for the DHT11 temperature and humidity sensor, compatible with the rppal GPIO library IoPin type.

Based on this driver, but modified to work on my Raspberry Pi 4B.

Requirements

  • Rust 1.43+

Usage

Include library as a dependency in your Cargo.toml

[dependencies]
rppal-dht11 = "0.3.1"
use rppal_dht11::Dht11;
use rppal::{gpio::Gpio, hal::Delay};

let pin = Gpio::new()?.get(DHT11_PIN)?.into_output_low();
// Create an instance of the DHT11 device
let mut dht11 = Dht11::new(pin);
let mut delay = Delay::new();

// Perform a sensor reading
let measurement = dht11.perform_measurement(&mut delay).unwrap();
println!("{:?}", measurement);

License

Copyright © 2020 Pietro Lorefice

Copyright © 2022 Xavientois

Dual licensed under your choice of either of:

Dependencies

~0.4–9MB
~52K SLoC