Struct bosch_bme680::MeasurmentData
source · pub struct MeasurmentData {
pub temperature: f32,
pub humidity: f32,
pub pressure: f32,
pub gas_resistance: Option<f32>,
}Expand description
Measurment data returned from the sensor
Fields§
§temperature: f32Temperature in °C
humidity: f32Relative humidity in %
pressure: f32Pressure in hPa
gas_resistance: Option<f32>Gas resistance in Ohms None if gas measurment is disabled or gas measurment hasn’t finished in time according to the gas_measuring bit.