dht11

Crates.iodht11
lib.rsdht11
version0.3.1
sourcesrc
created_at2020-05-09 20:17:25.076357
updated_at2020-05-16 14:22:09.410789
descriptionPlatform-agnostic Rust driver for the DHT11 temperature and humidity sensor.
homepagehttps://github.com/plorefice/dht11-rs
repositoryhttps://github.com/plorefice/dht11-rs
max_upload_size
id239383
size17,388
Pietro Lorefice (plorefice)

documentation

README

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:

Commit count: 18

cargo fmt