#temperature-humidity #humidity #embedded-hal #temperature #aht10 #usb-serial

no-std aht10-embedded

A platform agnostic driver to interface with the AHT10 temperature/humidity sensor, tested on Rasberry Pi Pico

1 unstable release

0.0.1 Nov 30, 2023

#14 in #usb-serial

MIT license

17KB
412 lines

AHT10 Rust Library

crates.io MIT GitHub

Why?

I haven't found a driver that works simply (without async 😉 ) for an embedded environment and #no_std.

Usage

First, create the AHT10 struct, with your I2C

let mut aht = AHT10::new(i2c1);

Then, initialize the sensor

match aht.initialize() {
    Ok(_) => (),
    Err(e) => {
        // AAAAaarrrgggg.... 😵
    }
}

Finally, read the data:

match aht.read_data(&mut delay) {
    Ok(data) => {
        // Yay ! It works !
        let celsius = data.temperature_celsius();
        let fahrenheit = data.temperature_fahrenheit(); // 😶
        let humidity = data.humidity();
    }
    Err(e) => {
        // AAAAaarrrgggg... 😵
    }
};

Example

There is only one example named rp_pico_aht10. It uses GPIOs 2 & 3 (SDA & SCL respectively) and print data on USB serial port.

Dependencies

~71KB