-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
GyroscopeBandwidth.cs
61 lines (51 loc) · 1.32 KB
/
GyroscopeBandwidth.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
// 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.Imu
{
/// <summary>
/// Gyroscope frequency used for measurement
/// </summary>
public enum GyroscopeBandwidth
{
/// <summary>
/// Bandwidth 250Hz
/// </summary>
Bandwidth0250Hz = 0,
/// <summary>
/// Bandwidth 184Hz
/// </summary>
Bandwidth0184Hz = 1,
/// <summary>
/// Bandwidth 92Hz
/// </summary>
Bandwidth0092Hz = 2,
/// <summary>
/// Bandwidth 41Hz
/// </summary>
Bandwidth0041Hz = 3,
/// <summary>
/// Bandwidth 20Hz
/// </summary>
Bandwidth0020Hz = 4,
/// <summary>
/// Bandwidth 10Hz
/// </summary>
Bandwidth0010Hz = 5,
/// <summary>
/// Bandwidth 5Hz
/// </summary>
Bandwidth0005Hz = 6,
/// <summary>
/// Bandwidth 3600Hz
/// </summary>
Bandwidth3600Hz = 7,
/// <summary>
/// Bandwidth 3600Hz FS 32
/// </summary>
Bandwidth3600HzFS32 = -1,
/// <summary>
/// Bandwidth 8800Hz FS 32
/// </summary>
Bandwidth8800HzFS32 = -2,
}
}