-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathBh1745.cs
412 lines (354 loc) · 14.5 KB
/
Bh1745.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// 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 System.Drawing;
namespace Iot.Device.Bh1745
{
/// <summary>
/// Digital color sensor Bh1745.
/// </summary>
[Interface("Digital color sensor Bh1745.")]
public class Bh1745 : IDisposable
{
private byte ManufacturerId => Read8BitsFromRegister((byte)Register.MANUFACTURER_ID);
private byte PartId => (byte)(Read8BitsFromRegister((byte)Register.SYSTEM_CONTROL) & (byte)Mask.PART_ID);
private I2cDevice _i2cDevice;
private MeasurementTime _measurementTime;
private bool _measurementIsActive;
private AdcGain _adcGain;
private LatchBehavior _latchBehavior;
private InterruptSource _interruptSource;
private bool _interruptIsEnabled;
private InterruptPersistence _interruptPersistence;
private ushort _lowerInterruptThreshold;
private ushort _higherInterruptThreshold;
/// <summary>
/// Initializes a new instance of the <see cref="Bh1745" /> class.
/// </summary>
/// <param name="device">The used I2c communication device.</param>
public Bh1745(I2cDevice device)
{
_i2cDevice = device;
// ChannelCompensationMultipliers: Red, Green, Blue, Clear
ChannelCompensationMultipliers = new ChannelCompensationMultipliers(2.2, 1.0, 1.8, 10.0);
// Reset device and set default configuration
InitDevice();
}
/// <summary>
/// The primary I2c address of the BH1745.
/// </summary>
public const byte DefaultI2cAddress = 0x38;
/// <summary>
/// The secondary I2c address of the BH1745.
/// </summary>
public const byte SecondaryI2cAddress = 0x39;
/// <summary>
/// Gets or sets the state of the interrupt pin.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">Thrown if invalid InterruptStatus is set.</exception>
public InterruptStatus InterruptReset
{
get
{
var intReset = Read8BitsFromRegister((byte)Register.SYSTEM_CONTROL);
intReset = (byte)((intReset & (byte)Mask.INT_RESET) >> 6);
return (InterruptStatus)intReset;
}
set
{
var intReset = Read8BitsFromRegister((byte)Register.SYSTEM_CONTROL);
intReset = (byte)((intReset & (byte)~Mask.INT_RESET) | (byte)value << 6);
Write8BitsToRegister((byte)Register.SYSTEM_CONTROL, intReset);
}
}
/// <summary>
/// Gets or sets the currently set measurement time.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">Thrown if invalid MeasurementTime is set.</exception>
[Property]
public MeasurementTime MeasurementTime
{
get => _measurementTime;
set
{
var time = Read8BitsFromRegister((byte)Register.MODE_CONTROL1);
time = (byte)((time & (byte)~Mask.MEASUREMENT_TIME) | (byte)value);
Write8BitsToRegister((byte)Register.MODE_CONTROL1, time);
_measurementTime = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether the measurement is active.
/// </summary>
public bool MeasurementIsActive
{
get => _measurementIsActive;
set
{
var active = Read8BitsFromRegister((byte)Register.MODE_CONTROL2);
active = (byte)((active & (byte)~Mask.RGBC_EN) | Convert.ToByte(value) << 4);
Write8BitsToRegister((byte)Register.MODE_CONTROL2, active);
_measurementIsActive = value;
}
}
/// <summary>
/// Gets or sets the adc gain of the sensor.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">Thrown if invalid AdcGain is set.</exception>
[Property]
public AdcGain AdcGain
{
get => _adcGain;
set
{
var adcGain = Read8BitsFromRegister((byte)Register.MODE_CONTROL2);
adcGain = (byte)((adcGain & (byte)~Mask.ADC_GAIN) | (byte)value);
Write8BitsToRegister((byte)Register.MODE_CONTROL2, adcGain);
_adcGain = value;
}
}
/// <summary>
/// Gets a value indicating whether the interrupt signal is active.
/// </summary>
public bool InterruptSignalIsActive
{
get
{
var intStatus = Read8BitsFromRegister((byte)Register.INTERRUPT);
intStatus = (byte)((intStatus & (byte)Mask.INT_STATUS) >> 7);
return Convert.ToBoolean(intStatus);
}
}
/// <summary>
/// Gets or sets how the interrupt pin latches.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">Thrown if invalid LatchBehavior is set.</exception>
public LatchBehavior LatchBehavior
{
get => _latchBehavior;
set
{
var intLatch = Read8BitsFromRegister((byte)Register.INTERRUPT);
intLatch = (byte)((intLatch & (byte)~Mask.INT_LATCH) | (byte)value << 4);
Write8BitsToRegister((byte)Register.INTERRUPT, intLatch);
_latchBehavior = value;
}
}
/// <summary>
/// Gets or sets the source channel of the interrupt.
/// </summary>
public InterruptSource InterruptSource
{
get => _interruptSource;
set
{
var intSource = Read8BitsFromRegister((byte)Register.INTERRUPT);
intSource = (byte)((intSource & (byte)~Mask.INT_SOURCE) | (byte)value << 2);
Write8BitsToRegister((byte)Register.INTERRUPT, intSource);
_interruptSource = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether the interrupt pin is enabled.
/// </summary>
public bool InterruptIsEnabled
{
get => _interruptIsEnabled;
set
{
var intPin = Read8BitsFromRegister((byte)Register.INTERRUPT);
intPin = (byte)((intPin & (byte)~Mask.INT_ENABLE) | Convert.ToByte(value));
Write8BitsToRegister((byte)Register.INTERRUPT, intPin);
_interruptIsEnabled = value;
}
}
/// <summary>
/// Gets or sets the persistence function of the interrupt.
/// </summary>
public InterruptPersistence InterruptPersistence
{
get => _interruptPersistence;
set
{
var intPersistence = Read8BitsFromRegister((byte)Register.PERSISTENCE);
intPersistence = (byte)((intPersistence & (byte)~Mask.PERSISTENCE) | (byte)value);
Write8BitsToRegister((byte)Register.PERSISTENCE, intPersistence);
_interruptPersistence = value;
}
}
/// <summary>
/// Gets or sets the lower interrupt threshold.
/// </summary>
public ushort LowerInterruptThreshold
{
get => _lowerInterruptThreshold;
set
{
WriteShortToRegister((byte)Register.TL, value);
_lowerInterruptThreshold = value;
}
}
/// <summary>
/// Gets or sets the higher interrupt threshold.
/// </summary>
public ushort HigherInterruptThreshold
{
get => _higherInterruptThreshold;
set
{
WriteShortToRegister((byte)Register.TH, value);
_higherInterruptThreshold = value;
}
}
/// <summary>
/// Gets or sets the channel compensation multipliers which are used to compensate the measurements.
/// </summary>
public ChannelCompensationMultipliers ChannelCompensationMultipliers { get; set; }
/// <summary>
/// Resets the device to the default configuration.
/// On reset the sensor goes to power down mode.
/// </summary>
[Command]
public void Reset()
{
var status = Read8BitsFromRegister((byte)Register.SYSTEM_CONTROL);
status = (byte)((status & (byte)~Mask.SW_RESET) | 0x01 << 7);
Write8BitsToRegister((byte)Register.SYSTEM_CONTROL, status);
// set default measurement configuration
MeasurementTime = MeasurementTime.Ms160;
AdcGain = AdcGain.X1;
MeasurementIsActive = true;
InterruptIsEnabled = true;
// set fields to reset state
_interruptPersistence = InterruptPersistence.UpdateMeasurementEnd;
_latchBehavior = LatchBehavior.LatchUntilReadOrInitialized;
_interruptSource = InterruptSource.RedChannel;
_interruptIsEnabled = false;
_lowerInterruptThreshold = 0x0000;
_higherInterruptThreshold = 0xFFFF;
// write default value to Mode_Control3
Write8BitsToRegister((byte)Register.MODE_CONTROL3, 0x02);
}
/// <summary>
/// Reads whether the last measurement is valid.
/// </summary>
/// <returns>True if measurment is valid.</returns>
public bool ReadMeasurementIsValid()
{
var valid = Read8BitsFromRegister((byte)Register.MODE_CONTROL2);
valid = (byte)(valid & (byte)Mask.VALID);
return Convert.ToBoolean(valid);
}
/// <summary>
/// Reads the red data register of the sensor.
/// </summary>
/// <returns>Red value from data register.</returns>
public ushort ReadRedDataRegister() => Read16BitsFromRegister((byte)Register.RED_DATA);
/// <summary>
/// Reads the green data register of the sensor.
/// </summary>
/// <returns>Green value from data register.</returns>
public ushort ReadGreenDataRegister() => Read16BitsFromRegister((byte)Register.GREEN_DATA);
/// <summary>
/// Reads the blue data register of the sensor.
/// </summary>
/// <returns>Blue value from data register.</returns>
public ushort ReadBlueDataRegister() => Read16BitsFromRegister((byte)Register.BLUE_DATA);
/// <summary>
/// Reads the clear data register of the sensor.
/// </summary>
/// <returns>Clear value from data register.</returns>
public ushort ReadClearDataRegister() => Read16BitsFromRegister((byte)Register.CLEAR_DATA);
/// <summary>
/// Gets the compensated color reading from the sensor.
/// </summary>
/// <returns>Compensated color.</returns>
[Telemetry]
public Color GetCompensatedColor()
{
var clearDataRaw = ReadClearDataRegister();
if (clearDataRaw == 0)
{
return Color.FromArgb(0, 0, 0);
}
// apply channel multipliers and normalize
double compensatedRed = ReadRedDataRegister() * ChannelCompensationMultipliers.Red / MeasurementTime.ToMilliseconds() * 360;
double compensatedGreen = ReadGreenDataRegister() * ChannelCompensationMultipliers.Green / MeasurementTime.ToMilliseconds() * 360;
double compensatedBlue = ReadBlueDataRegister() * ChannelCompensationMultipliers.Blue / MeasurementTime.ToMilliseconds() * 360;
double compensatedClear = clearDataRaw * ChannelCompensationMultipliers.Clear / MeasurementTime.ToMilliseconds() * 360;
// scale against clear channel
int redScaled = (int)Math.Min(255, compensatedRed / compensatedClear * 255);
int greenScaled = (int)Math.Min(255, compensatedGreen / compensatedClear * 255);
int blueScaled = (int)Math.Min(255, compensatedBlue / compensatedClear * 255);
return Color.FromArgb(redScaled, greenScaled, blueScaled);
}
private void InitDevice()
{
// check manufacturer and part Id
if (ManufacturerId != 0xE0)
{
throw new Exception($"Manufacturer ID {ManufacturerId} is not the same as expected 224. Please check if you are using the right device.");
}
if (PartId != 0x0b)
{
throw new Exception($"Part ID {PartId} is not the same as expected 11. Please check if you are using the right device.");
}
// soft reset sensor
Reset();
}
private byte Read8BitsFromRegister(byte register)
{
_i2cDevice.WriteByte(register);
var value = _i2cDevice.ReadByte();
return value;
}
private ushort Read16BitsFromRegister(byte register)
{
SpanByte bytes = new byte[2];
_i2cDevice.WriteByte(register);
_i2cDevice.Read(bytes);
return BinaryPrimitives.ReadUInt16LittleEndian(bytes);
}
private void WriteShortToRegister(byte register, ushort value)
{
var bytes = new byte[3];
var source = BitConverter.GetBytes(value);
if (!BitConverter.IsLittleEndian)
{
// Original was using Reverse();
byte[] reverse = new byte[source.Length];
for (int i = 0; i < reverse.Length; i++)
{
reverse[i] = source[source.Length - 1 - i];
}
source = reverse;
}
bytes[0] = register;
// Original code:Buffer.BlockCopy(source, 0, bytes, 1, source.Length);
for (int i = 0; i < source.Length - 1; i++)
{
bytes[i + 1] = source[i];
}
_i2cDevice.Write(bytes);
}
private void Write8BitsToRegister(byte register, byte data)
{
SpanByte command = new[]
{
register, data
};
_i2cDevice.Write(command);
}
/// <summary>
/// <inheritdoc/>
/// </summary>
public void Dispose()
{
_i2cDevice?.Dispose();
_i2cDevice = null;
}
}
}