-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathShtc3.cs
261 lines (219 loc) · 7.57 KB
/
Shtc3.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
// 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;
using System.Device.I2c;
using System.Threading;
using UnitsNet;
namespace Iot.Device.Shtc3
{
/// <summary>
/// Temperature and humidity sensor Shtc3.
/// </summary>
public class Shtc3 : IDisposable
{
// CRC const
private const byte CrcPolunomial = 0x31;
private const byte CrcInit = 0xFF;
/// <summary>
/// Default I2C address.
/// </summary>
public const int DefaultI2cAddress = 0x70;
private I2cDevice _i2cDevice;
private int _id = int.MinValue;
/// <summary>
/// Initializes a new instance of the <see cref="Shtc3"/> class.
/// </summary>
/// <param name="i2cDevice">The I2C device used for communication.</param>
public Shtc3(I2cDevice i2cDevice)
{
_i2cDevice = i2cDevice ?? throw new ArgumentNullException(nameof(i2cDevice));
Wakeup();
_status = Status.Idle;
Reset();
}
private Status _status;
/// <summary>
/// Set Shtc3 state.
/// </summary>
internal Status Status => _status;
private static Register GetMeasurementCmd(bool lowPower, bool clockStretching)
{
if (lowPower)
{
if (clockStretching)
{
return Register.SHTC3_MEAS_T_RH_CLOCKSTR_LPM;
}
else
{
return Register.SHTC3_MEAS_T_RH_POLLING_LPM;
}
}
else
{
if (clockStretching)
{
return Register.SHTC3_MEAS_T_RH_CLOCKSTR_NPM;
}
else
{
return Register.SHTC3_MEAS_T_RH_POLLING_NPM;
}
}
}
/// <summary>
/// Check the match to the SHTC3 product code
/// Table 15 while bits 11 and 5:0 contain the SHTC3 specific product code 0b_0000_1000_0000_0111.
/// </summary>
/// <param name="id">Id to test.</param>
/// <returns>Is the ID valid.</returns>
private static bool ValidShtc3Id(int id) =>
(id & 0b0000_1000_0011_1111) == 0b0000_1000_0000_0111;
/// <summary>
/// 8-bit CRC Checksum Calculation.
/// </summary>
/// <param name="data">Raw Data.</param>
/// <param name="crc8">Raw CRC8.</param>
/// <returns>Checksum is true or false.</returns>
private static bool CheckCrc8(SpanByte data, byte crc8)
{
// Details in the Datasheet table 16 P9
byte crc = CrcInit;
for (int i = 0; i < 2; i++)
{
crc ^= data[i];
for (int j = 8; j > 0; j--)
{
if ((crc & 0x80) != 0)
{
crc = (byte)((crc << 1) ^ CrcPolunomial);
}
else
{
crc = (byte)(crc << 1);
}
}
}
return crc == crc8;
}
/// <summary>
/// Try read Temperature and Humidity.
/// </summary>
/// <param name="temperature">Temperature returned by sensor.</param>
/// <param name="relativeHumidity">Humidity return by sensor.</param>
/// <param name="lowPower">True measured in low power mode, "false"(default) measured in normal power mode.</param>
/// <param name="clockStretching">True allow clock stretching, "false" (default) without clock stretching.</param>
/// <returns>True if operation was successful.</returns>
public bool TryGetTemperatureAndHumidity(out Temperature temperature, out RelativeHumidity relativeHumidity, bool lowPower = false, bool clockStretching = false)
{
if (Status == Status.Sleep)
{
Wakeup();
}
Register cmd = GetMeasurementCmd(lowPower, clockStretching);
if (!TryReadSensorData(cmd, out var st, out var srh))
{
temperature = default(Temperature);
relativeHumidity = default(RelativeHumidity);
return false;
}
// Details in the Datasheet P9
temperature = Temperature.FromDegreesCelsius(Math.Round(((st * 175 / 65536.0) - 45) * 10) / 10.0);
relativeHumidity = RelativeHumidity.FromPercent(srh * 100.0 / 65536.0);
return true;
}
private bool TryReadSensorData(Register cmd, out double temperature, out double humidity)
{
Write(cmd);
SpanByte readBuff = new byte[6];
_i2cDevice.Read(readBuff);
// Details in the Datasheet P7
int st = BinaryPrimitives.ReadInt16BigEndian(readBuff.Slice(0, 2)); // Temp
int srh = BinaryPrimitives.ReadUInt16BigEndian(readBuff.Slice(3, 2)); // Humi
// check 8-bit crc
bool tCrc = CheckCrc8(readBuff.Slice(0, 2), readBuff[2]);
bool rhCrc = CheckCrc8(readBuff.Slice(3, 2), readBuff[5]);
if (!tCrc || !rhCrc)
{
temperature = double.NaN;
humidity = double.NaN;
return false;
}
temperature = st;
humidity = srh;
return true;
}
/// <summary>
/// SHTC3 Sleep.
/// </summary>
public void Sleep()
{
if (Status == Status.Sleep)
{
return;
}
Write(Register.SHTC3_SLEEP);
}
/// <summary>
/// SHTC3 Wakeup.
/// </summary>
private void Wakeup() => Write(Register.SHTC3_WAKEUP);
/// <summary>
/// SHTC3 Soft Reset.
/// </summary>
public void Reset()
{
if (Status == Status.Sleep)
{
Wakeup();
}
Write(Register.SHTC3_RESET);
}
/// <summary>
/// Sensor Id.
/// </summary>
public int Id => _id = _id == int.MinValue ? ReadId() : _id;
/// <summary>
/// Read Id.
/// </summary>
/// <returns>Id number.</returns>
private int ReadId()
{
if (Status == Status.Sleep)
{
Wakeup();
}
Write(Register.SHTC3_ID);
SpanByte readBuff = new byte[3];
_i2cDevice.Read(readBuff);
// check 8-bit crc
if (!CheckCrc8(readBuff.Slice(0, 2), readBuff[2]))
{
return int.MinValue;
}
int id = BinaryPrimitives.ReadInt16BigEndian(readBuff.Slice(0, 2));
// check the result match to the SHTC3 product code
if (!ValidShtc3Id(id))
{
return int.MinValue;
}
return id;
}
private void Write(Register register)
{
SpanByte writeBuff = new byte[2];
BinaryPrimitives.WriteUInt16BigEndian(writeBuff, (ushort)register);
_i2cDevice.Write(writeBuff);
// wait SCL free
DelayHelper.DelayMilliseconds(20, false);
}
/// <inheritdoc/>
public void Dispose()
{
_i2cDevice?.Dispose();
_i2cDevice = null;
}
}
}