scd4x 0.1.0

Rust driver for the Sensirion SCD4x series. Carbon Dioxide / Temperature / Humidity sensors.
Documentation
1
2
3
4
5
6
7
//! Types for the SCD4x sensor.

pub struct SensorData {
    pub co2: f32,
    pub temperature: f32,
    pub humidity: f32,
}