-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathOutputRate.cs
46 lines (39 loc) · 913 Bytes
/
OutputRate.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
// 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.Hmc5883l
{
/// <summary>
/// HMC5883L Typical Data Output Rate (Hz)
/// </summary>
public enum OutputRate
{
/// <summary>
/// 0.75 Hz
/// </summary>
Rate00_75 = 0x00,
/// <summary>
/// 1.5 Hz
/// </summary>
Rate01_5 = 0x01,
/// <summary>
/// 3 Hz
/// </summary>
Rate03 = 0x02,
/// <summary>
/// 7.5 Hz
/// </summary>
Rate07_5 = 0x03,
/// <summary>
/// 15 Hz
/// </summary>
Rate15 = 0x04,
/// <summary>
/// 30 Hz
/// </summary>
Rate30 = 0x05,
/// <summary>
/// 75 Hz
/// </summary>
Rate75 = 0x06,
}
}