#embedded-hal-driver #temperature-humidity #humidity-sensor #platform-agnostic

no-std dht11

Platform-agnostic Rust driver for the DHT11 temperature and humidity sensor

4 releases (2 breaking)

0.3.1 May 16, 2020
0.3.0 May 16, 2020
0.2.0 May 16, 2020
0.1.0 May 9, 2020

#1558 in Embedded development

Download history 12/week @ 2023-11-27 6/week @ 2023-12-04 17/week @ 2023-12-11 20/week @ 2023-12-18 8/week @ 2023-12-25 16/week @ 2024-01-08 12/week @ 2024-01-15 7/week @ 2024-01-22 7/week @ 2024-01-29 10/week @ 2024-02-05 25/week @ 2024-02-12 41/week @ 2024-02-19 43/week @ 2024-02-26 29/week @ 2024-03-04 35/week @ 2024-03-11

152 downloads per month

MIT/Apache

9KB
113 lines

dht11-rs

crates.io badge docs.rs badge

Platform-agnostic Rust driver for the DHT11 temperature and humidity sensor, using embedded-hal traits.

Requirements

  • Rust 1.43+

Usage

Include library as a dependency in your Cargo.toml

[dependencies]
dht11 = "0.1.0"
use dht11::Dht11;

// Create an instance of the DHT11 device
let mut dht11 = Dht11::new(pin);

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

Examples

See the examples directory for an example on how to use this crate on an STM32F407 MCU.

By default, semihosting is used to display the value of the readings, using OpenOCD or similar.

License

Copyright © 2020 Pietro Lorefice

Dual licensed under your choice of either of:

Dependencies

~235KB