-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathOperationMode.cs
38 lines (33 loc) · 1.01 KB
/
OperationMode.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Iot.Device.Ccs811
{
/// <summary>
/// Modes of Operation.
/// </summary>
public enum OperationMode
{
/// <summary>
/// Mode 0: Idle, low current mode.
/// </summary>
Idle = 0,
/// <summary>
/// Mode 1: Constant power mode, IAQ measurement every second.
/// </summary>
ConstantPower1Second = 1,
/// <summary>
/// Mode 2: Pulse heating mode IAQ measurement every 10 seconds.
/// </summary>
PluseHeating10Second = 2,
/// <summary>
/// Mode 3: Low power pulse heating mode IAQ
/// measurement every 60 seconds.
/// </summary>
LowPower60Second = 3,
/// <summary>
/// Mode 4: Constant power mode, sensor measurement
/// every 250ms.
/// </summary>
ConstantPower250Millisecond = 4,
}
}