-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathMeasurementArgs.cs
39 lines (33 loc) · 1.32 KB
/
MeasurementArgs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using UnitsNet;
namespace Iot.Device.Ccs811
{
/// <summary>
/// Arguments of the Measurement Threshold event
/// Contains the measurements done and potential error.
/// </summary>
public class MeasurementArgs
{
/// <summary>
/// Gets or sets a value indicating whether measurement is successful.
/// </summary>
public bool MeasurementSuccess { get; set; }
/// <summary>
/// Gets or sets equivalent CO2, best is to use PartsPerMilion for a readable range.
/// </summary>
public VolumeConcentration EquivalentCO2 { get; set; }
/// <summary>
/// Gets or sets equivalent Total Volatile Organic Compound, best is to use PartsPerBilion for a readable range.
/// </summary>
public VolumeConcentration EquivalentTotalVolatileOrganicCompound { get; set; }
/// <summary>
/// Gets or sets raw current selected, best to use MicroAmpere for a readable range.
/// </summary>
public ElectricCurrent RawCurrentSelected { get; set; }
/// <summary>
/// Gets or sets raw ADC reading.
/// </summary>
public int RawAdcReading { get; set; }
}
}