-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathBh1750fvi.cs
121 lines (100 loc) · 4.08 KB
/
Bh1750fvi.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Buffers.Binary;
using System.Device.I2c;
using System.Device.Model;
using UnitsNet;
namespace Iot.Device.Bh1750fvi
{
/// <summary>
/// Ambient Light Sensor BH1750FVI.
/// </summary>
[Interface("Ambient Light Sensor BH1750FVI")]
public class Bh1750fvi : IDisposable
{
private const byte DefaultLightTransmittance = 0b0100_0101;
private I2cDevice _i2cDevice;
private double _lightTransmittance;
/// <summary>
/// Gets or sets light transmittance, from 27.20% to 222.50%.
/// </summary>
[Property]
public double LightTransmittance
{
get => _lightTransmittance;
set
{
SetLightTransmittance(value);
_lightTransmittance = value;
}
}
/// <summary>
/// Gets or sets measuring mode.
/// </summary>
[Property]
public MeasuringMode MeasuringMode { get; set; }
/// <summary>
/// BH1750FVI Illuminance (Lux).
/// </summary>
[Telemetry]
public Illuminance Illuminance => GetIlluminance();
/// <summary>
/// Initializes a new instance of the <see cref="Bh1750fvi" /> class.
/// </summary>
/// <param name="i2cDevice">The I2C device used for communication.</param>
/// <param name="measuringMode">The measuring mode of BH1750FVI.</param>
/// <param name="lightTransmittance">BH1750FVI Light Transmittance, from 27.20% to 222.50%.</param>
public Bh1750fvi(I2cDevice i2cDevice, MeasuringMode measuringMode = MeasuringMode.ContinuouslyHighResolutionMode, double lightTransmittance = 1)
{
_i2cDevice = i2cDevice ?? throw new ArgumentNullException(nameof(i2cDevice));
_i2cDevice.WriteByte((byte)Command.PowerOn);
_i2cDevice.WriteByte((byte)Command.Reset);
LightTransmittance = lightTransmittance;
MeasuringMode = measuringMode;
}
/// <summary>
/// Set BH1750FVI Light Transmittance.
/// </summary>
/// <param name="transmittance">Light Transmittance, from 27.20% to 222.50%.</param>
private void SetLightTransmittance(double transmittance)
{
if (transmittance > 2.225 || transmittance < 0.272)
{
throw new ArgumentOutOfRangeException(nameof(transmittance), $"{nameof(transmittance)} needs to be in the range of 27.20% to 222.50%.");
}
byte val = (byte)(DefaultLightTransmittance / transmittance);
_i2cDevice.WriteByte((byte)((byte)Command.MeasurementTimeHigh | (val >> 5)));
_i2cDevice.WriteByte((byte)((byte)Command.MeasurementTimeLow | (val & 0b0001_1111)));
}
/// <summary>
/// Get BH1750FVI Illuminance.
/// </summary>
/// <returns>Illuminance (Default unit: Lux).</returns>
private Illuminance GetIlluminance()
{
if (MeasuringMode == MeasuringMode.OneTimeHighResolutionMode || MeasuringMode == MeasuringMode.OneTimeHighResolutionMode2 || MeasuringMode == MeasuringMode.OneTimeLowResolutionMode)
{
_i2cDevice.WriteByte((byte)Command.PowerOn);
}
SpanByte readBuff = new byte[2];
_i2cDevice.WriteByte((byte)MeasuringMode);
_i2cDevice.Read(readBuff);
ushort raw = BinaryPrimitives.ReadUInt16BigEndian(readBuff);
double result = raw / (1.2 * _lightTransmittance);
if (MeasuringMode == MeasuringMode.ContinuouslyHighResolutionMode2 || MeasuringMode == MeasuringMode.OneTimeHighResolutionMode2)
{
result *= 2;
}
return Illuminance.FromLux(result);
}
/// <summary>
/// <inheritdoc/>
/// </summary>
public void Dispose()
{
_i2cDevice?.Dispose();
_i2cDevice = null;
}
}
}