1 unstable release
0.0.1 | Nov 30, 2023 |
---|
#16 in #usb-serial
17KB
412 lines
AHT10 Rust Library
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