Class Measurement
Represents measured values from the sensor.
public class Measurement : AbstractReadEntity
- Inheritance
-
Measurement
Properties
Humidity
Gets or sets the Compensated Ambient Humidity [%RH].
public RelativeHumidity Humidity { get; protected set; }
Property Value
NoxIndex
Gets or sets the NOx Index.
public ushort NoxIndex { get; protected set; }
Property Value
Pm10_0
Gets or sets the Mass Concentration PM10 [µg/m³].
public MassConcentration Pm10_0 { get; protected set; }
Property Value
Pm1_0
Gets or sets the Mass Concentration PM1.0 [µg/m³].
public MassConcentration Pm1_0 { get; protected set; }
Property Value
Pm2_5
Gets or sets the Mass Concentration PM2.5 [µg/m³].
public MassConcentration Pm2_5 { get; protected set; }
Property Value
Pm4_0
Gets or sets the Mass Concentration PM4.0 [µg/m³].
public MassConcentration Pm4_0 { get; protected set; }
Property Value
Temperature
Gets or sets the Compensated Ambient Temperature [°C].
public Temperature Temperature { get; protected set; }
Property Value
VocIndex
Gets or sets the VOC Index.
public ushort VocIndex { get; protected set; }
Property Value
Remarks
The VOC Index mimics the human nose’s perception of odors with a relative intensity compared to recent history.The VOC Index is also sensitive to odorless VOCs, but it cannot discriminate between them. Sensirion's VOC Index is explained in more detail here: https://sensirion.com/media/documents/02232963/6294E043/Info_Note_VOC_Index.pdf .
Methods
ToString()
Convenient method to quickly dump the read measurement.
public override string ToString()
Returns
- string
All measurement values in a single string.