-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathConfig.cs
69 lines (56 loc) · 1.44 KB
/
Config.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Iot.Device.Mcp3428
{
/// <summary>
/// Possible gain values of the ADC
/// </summary>
public enum AdcGain : byte
{
/// <summary>1x gain</summary>
X1 = 0,
/// <summary>2x gain</summary>
X2 = 1,
/// <summary>4x gain</summary>
X4 = 2,
/// <summary>8x gain</summary>
X8 = 3
}
/// <summary>
/// Possible operation modes of the ADC
/// </summary>
[Flags]
public enum AdcMode : byte
{
/// <summary>One shot mode</summary>
OneShot = 0,
/// <summary>Continuous mode</summary>
Continuous = 16
}
/// <summary>
/// Possible connection states for the address pins
/// </summary>
public enum PinState : byte
{
/// <summary>Low state</summary>
Low = 0,
/// <summary>High state</summary>
High = 1,
/// <summary>Floating state</summary>
Floating = 2
}
/// <summary>
/// Possible resolution values of the ADC
/// </summary>
[Flags]
public enum AdcResolution : byte
{
/// <summary>12-bit resolution</summary>
Bit12 = 0,
/// <summary>14-bit resolution</summary>
Bit14 = 4,
/// <summary>16-bit resolution</summary>
Bit16 = 8
}
}