-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBleLightIntensityService.cs
More file actions
209 lines (180 loc) · 7.13 KB
/
Copy pathBleLightIntensityService.cs
File metadata and controls
209 lines (180 loc) · 7.13 KB
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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.Devices.Bluetooth.GenericAttributeProfile;
using Windows.Devices.Enumeration;
using Windows.Storage.Streams;
using Buffer = Windows.Storage.Streams.Buffer;
namespace SensorTag
{
/// <summary>
/// This class provides access to the SensorTag light intensity (LUX) BLE data. The driver for this sensor is using a state machine
/// so when the enable command is issued, the sensor starts to perform one measurements and the data is stored. To obtain
/// the data either use notifications or read the data directly. The optical sensor used on the SensorTag is OPT3001 from Texas Instruments.
/// </summary>
public class BleLightIntensityService : BleGenericGattService
{
public BleLightIntensityService()
{
}
/// <summary>
/// The version of the SensorTag device. 1=CC2541, 2=CC2650.
/// </summary>
public int Version { get; set; }
static Guid LightIntensityServiceUuid = Guid.Parse("f000aa70-0451-4000-b000-000000000000");
static Guid LightIntensityCharacteristicUuid = Guid.Parse("f000aa71-0451-4000-b000-000000000000");
static Guid LightIntensityCharacteristicConfigUuid = Guid.Parse("f000aa72-0451-4000-b000-000000000000");
static Guid LightIntensityCharacteristicPeriodUuid = Guid.Parse("f000aa73-0451-4000-b000-000000000000");
Delegate _lightValueChanged;
public event EventHandler<LightIntensityMeasurementEventArgs> LightMeasurementValueChanged
{
add
{
if (_lightValueChanged != null)
{
_lightValueChanged = Delegate.Combine(_lightValueChanged, value);
}
else
{
_lightValueChanged = value;
RegisterForValueChangeEvents(LightIntensityCharacteristicUuid);
}
}
remove
{
if (_lightValueChanged != null)
{
_lightValueChanged = Delegate.Remove(_lightValueChanged, value);
if (_lightValueChanged == null)
{
UnregisterForValueChangeEvents(LightIntensityCharacteristicUuid);
}
}
}
}
private async Task<int> GetConfig()
{
var ch = GetCharacteristic(LightIntensityCharacteristicConfigUuid);
if (ch != null)
{
var properties = ch.CharacteristicProperties;
if ((properties & GattCharacteristicProperties.Read) != 0)
{
byte value = await ReadCharacteristicByte(LightIntensityCharacteristicConfigUuid, Windows.Devices.Bluetooth.BluetoothCacheMode.Uncached);
Debug.WriteLine("Light intensity config = " + value);
return (int)value;
}
}
return -1;
}
bool isReading;
public async Task StartReading()
{
if (!isReading)
{
await WriteCharacteristicByte(LightIntensityCharacteristicConfigUuid, 1);
isReading = true;
}
}
public async Task StopReading()
{
if (isReading)
{
isReading = false;
await WriteCharacteristicByte(LightIntensityCharacteristicConfigUuid, 0);
}
}
/// <summary>
/// Get the rate at which sensor is being polled, in milliseconds.
/// </summary>
/// <returns>Returns the value read from the sensor or -1 if something goes wrong.</returns>
public async Task<int> GetPeriod()
{
byte v = await ReadCharacteristicByte(LightIntensityCharacteristicPeriodUuid, Windows.Devices.Bluetooth.BluetoothCacheMode.Uncached);
return (int)(v * 10);
}
/// <summary>
/// Set the rate at which sensor is being polled.
/// The period ranges for 100 ms to 2.55 seconds, resolution 10 ms.
/// </summary>
/// <param name="milliseconds">The delay between updates, accurate only to 10ms intervals. </param>
public async Task SetPeriod(int milliseconds)
{
int delay = milliseconds / 10;
if (delay < 0)
{
delay = 1;
}
await WriteCharacteristicByte(LightIntensityCharacteristicPeriodUuid, (byte)delay);
}
private void OnLightIntensityMeasurementValueChanged(LightIntensityMeasurementEventArgs args)
{
if (_lightValueChanged != null)
{
((EventHandler<LightIntensityMeasurementEventArgs>)_lightValueChanged)(this, args);
}
}
public async Task<bool> ConnectAsync(string deviceContainerId)
{
if (Version == 1)
{
throw new NotSupportedException();
}
return await this.ConnectAsync(LightIntensityServiceUuid, deviceContainerId);
}
protected override void OnCharacteristicValueChanged(GattCharacteristic sender, GattValueChangedEventArgs eventArgs)
{
if (sender.Uuid == LightIntensityCharacteristicUuid)
{
if (_lightValueChanged != null)
{
uint dataLength = eventArgs.CharacteristicValue.Length;
using (DataReader reader = DataReader.FromBuffer(eventArgs.CharacteristicValue))
{
if (dataLength == 2)
{
ushort rawData = ReadBigEndianU16bit(reader);
uint m = (uint)(rawData & 0x0FFF);
uint e = ((uint)(rawData & 0xF000)) >> 12;
double lux = (double)m * (0.01 * Math.Pow(2.0, e));
var measurement = new LightIntensityMeasurement();
measurement.Lux = lux;
OnLightIntensityMeasurementValueChanged(new LightIntensityMeasurementEventArgs(measurement, eventArgs.Timestamp));
}
}
}
}
}
}
public class LightIntensityMeasurement
{
/// <summary>
/// Light intensity (LUX). See https://en.wikipedia.org/wiki/Lux
/// </summary>
public double Lux { get; set; }
public LightIntensityMeasurement()
{
}
}
public class LightIntensityMeasurementEventArgs : EventArgs
{
public LightIntensityMeasurementEventArgs(LightIntensityMeasurement measurement, DateTimeOffset timestamp)
{
Measurement = measurement;
Timestamp = timestamp;
}
public LightIntensityMeasurement Measurement
{
get;
private set;
}
public DateTimeOffset Timestamp
{
get;
private set;
}
}
}