8000 GitHub - Zelzahn/hts221: Rust crate to interface with the STMicro HTS221 sensor
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Zelzahn/hts221

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hts221

I²C API for the HTS221 humidity and temperature sensor

Example

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

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

let rh = hts221.humidity_x2()?;
let deg_c = hts221.temperature_x8()?;
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.

About

Rust crate to interface with the STMicro HTS221 sensor

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%
0