#dht11 #raspberry-pi #reading #up #temperature #humidity #hooked

simple-dht11

A simple library to get a reading from a DHT11 hooked up to a Raspberry Pi

3 releases

0.1.2 Nov 28, 2022
0.1.1 Nov 21, 2022
0.1.0 Nov 21, 2022

#23 in #humidity

Download history 3/week @ 2024-02-16 20/week @ 2024-02-23 7/week @ 2024-03-01 19/week @ 2024-03-08 20/week @ 2024-03-15 20/week @ 2024-03-29

59 downloads per month

GPL-3.0 license

15KB
108 lines

Simple DHT11

The aim of this library is to create an incredibly quick and easy way for a user to hook up a DHT11 to a Raspberry Pi and get a reading from it.

Example

use simple_dht11::dht11::Dht11;

fn main() {
    let mut dht11 = Dht11::new(27); // Note this is BCM

    let response = dht11.get_reading();

    println!("Temperature: {}", response.temperature);
    println!("Humidity: {}", response.humidity);
}

Example output:

Temperature: 24.9
Humidity: 21

⚠️ If you are cross compiling, please see the note about this on the RPPal Repo!

Dependencies

~370KB