4 releases (2 breaking)

0.3.0 Feb 9, 2020
0.2.0 May 14, 2018
0.1.1 Mar 22, 2018
0.1.0 Mar 17, 2018

#1899 in Embedded development

27 downloads per month

MIT/Apache

40KB
661 lines

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:

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

let rh = hts221.humidity_x2(&mut i2c)?;
let deg_c = hts221.temperature_x8(&mut i2c)?;
println!("rH = {}%", rh as f32 / 2.0);
println!("Temp = {} deg C", deg_c 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.

Dependencies

~71KB