hts221

I²C API for the HTS221 humidity and temperature sensor

Documentation

Example

To use the driver, you must have a concrete implementation of the embedded-hal traits. This example uses linux-embedded-hal:

``` rust let i2c = I2cdev::new("/dev/i2c-1")?; let mut hts221 = hts221::Builder::new(i2c).build()?;

let rh = hts221.humidityx2()?; let degc = hts221.temperaturex8()?; println!("rH = {}%", rh as f32 / 2.0); println!("Temp = {} deg C", degc as f32 / 8.0); ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.