Crates.io | sht4x |
lib.rs | sht4x |
version | 0.1.0 |
source | src |
created_at | 2022-12-01 21:52:23.064229 |
updated_at | 2022-12-01 21:52:23.064229 |
description | Sensirion SHT4x Driver for Embedded HAL |
homepage | |
repository | https://github.com/sirhcel/sht4x |
max_upload_size | |
id | 727947 |
size | 19,252 |
A platform agnostic device driver for the Sensirion SHT4x temperature and
humidity sensor
family.
It is based on embedded-hal
traits and works in no_std
environments.
In theory, it supports all of the sensor family's devices but has only been tested with the SHT40-AD1B so far.
Blocking operation
Supports all commands specified in the datasheet
Explicitly borrows DelayMs
for command execution so that it could be shared
(among multiple sensors)
Could be instantiated with the alternative I2C address for the SHT40-BD1B
Uses fixed-point arithmetics for converting raw sensor data into measurements in SI units
I16F16
from the fixed
crateOptional support for defmt
use embedded_hal::blocking::delay::DelayMs;
use sht4x::Sht4x;
// Device-specific use declarations.
let mut delay = // Device-specific initialization of delay.
let i2c = // Device-specific initialization of I2C peripheral.
let mut sht40 = Sht4x::new(i2c);
let serial = sht40.serial_number(&mut delay);
defmt::info!("serial number: {}", serial);
let measurement = sht40.measure(Precision::Low, &mut delay);
defmt::info!("measurement: {}", &measurement);
if let Ok(measurement) = measurement {
// Convert temperature measurand into different formats for further
// processing.
let int: i32 = measurement.temperature_milli_celsius();
let fixed: I16F16 = measurement.temperature_celsius();
let float: f32 = measurement.temperature_celsius().to_num();
}
sensor-temp-humidity-sht40 is another driver for this sensor family.
Licensed under either of
Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your discretion.
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.