-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathMeasuringMode.cs
52 lines (45 loc) · 1.7 KB
/
MeasuringMode.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
// 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.Bh1750fvi
{
/// <summary>
/// The measuring mode of BH1750FVI.
/// </summary>
public enum MeasuringMode : byte
{
// Details in the datasheet P5
/// <summary>
/// Start measurement at 1lx resolution
/// Measurement Time is typically 120ms.
/// </summary>
ContinuouslyHighResolutionMode = 0b0001_0000,
/// <summary>
/// Start measurement at 0.5lx resolution
/// Measurement Time is typically 120ms.
/// </summary>
ContinuouslyHighResolutionMode2 = 0b0001_0001,
/// <summary>
/// Start measurement at 4lx resolution
/// Measurement Time is typically 16ms.
/// </summary>
ContinuouslyLowResolutionMode = 0b0001_0011,
/// <summary>
/// Start measurement at 1lx resolution once
/// Measurement Time is typically 120ms.
/// It is automatically set to Power Down mode after measurement.
/// </summary>
OneTimeHighResolutionMode = 0b0010_0000,
/// <summary>
/// Start measurement at 0.5lx resolution once
/// Measurement Time is typically 120ms.
/// It is automatically set to Power Down mode after measurement.
/// </summary>
OneTimeHighResolutionMode2 = 0b0010_0001,
/// <summary>
/// Start measurement at 4lx resolution once
/// Measurement Time is typically 16ms.
/// It is automatically set to Power Down mode after measurement.
/// </summary>
OneTimeLowResolutionMode = 0b0010_0011
}
}