Skip to content
forked from plorefice/dht11-rs

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

License

Notifications You must be signed in to change notification settings

luanmm/dht11-rs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.3.1"
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:

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 97.3%
  • Logos 2.7%