-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPivotPage.xaml.cs
312 lines (281 loc) · 12.2 KB
/
PivotPage.xaml.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
using CySmart.Common;
using CySmart.DataModel;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using System.Threading.Tasks;
using Windows.ApplicationModel.Resources;
using Windows.Devices.Bluetooth;
using Windows.Devices.Bluetooth.GenericAttributeProfile;
using Windows.Devices.Enumeration;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.Graphics.Display;
using Windows.Storage.Streams;
using Windows.UI.Core;
using Windows.UI.Popups;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// The Pivot Application template is documented at http://go.microsoft.com/fwlink/?LinkID=391641
namespace CySmart
{
public sealed partial class PivotPage : Page
{
private readonly NavigationHelper navigationHelper;
private readonly ResourceLoader resourceLoader = ResourceLoader.GetForCurrentView("Resources");
/// <summary>
/// Currently selected device
/// </summary>
private BluetoothLEDevice currentDevice;
/// <summary>
/// Currently selected CapSense Characteristic
/// </summary>
GattCharacteristic currentCapSenseCharacteristic;
/// <summary>
/// Currently selected RGB Led Characteristic
/// </summary>
GattCharacteristic currentRGBLedCharacteristic;
public PivotPage()
{
this.InitializeComponent();
this.NavigationCacheMode = NavigationCacheMode.Required;
this.navigationHelper = new NavigationHelper(this);
this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
}
/// <summary>
/// Gets the <see cref="NavigationHelper"/> associated with this <see cref="Page"/>.
/// </summary>
public NavigationHelper NavigationHelper
{
get { return this.navigationHelper; }
}
/// <summary>
/// Populates the page with content passed during navigation. Any saved state is also
/// provided when recreating a page from a prior session.
/// </summary>
/// <param name="sender">
/// The source of the event; typically <see cref="NavigationHelper"/>.
/// </param>
/// <param name="e">Event data that provides both the navigation parameter passed to
/// <see cref="Frame.Navigate(Type, Object)"/> when this page was initially requested and
/// a dictionary of state preserved by this page during an earlier
/// session. The state will be null the first time a page is visited.</param>
private async void NavigationHelper_LoadState(object sender, LoadStateEventArgs e)
{
await ScanDevices();
}
/// <summary>
/// Preserves state associated with this page in case the application is suspended or the
/// page is discarded from the navigation cache. Values must conform to the serialization
/// requirements of <see cref="SuspensionManager.SessionState"/>.
/// </summary>
/// <param name="sender">The source of the event; typically <see cref="NavigationHelper"/>.</param>
/// <param name="e">Event data that provides an empty dictionary to be populated with
/// serializable state.</param>
private void NavigationHelper_SaveState(object sender, SaveStateEventArgs e)
{
// TODO: Save the unique state of the page here.
}
#region NavigationHelper registration
/// <summary>
/// The methods provided in this section are simply used to allow
/// NavigationHelper to respond to the page's navigation methods.
/// <para>
/// Page specific logic should be placed in event handlers for the
/// <see cref="NavigationHelper.LoadState"/>
/// and <see cref="NavigationHelper.SaveState"/>.
/// The navigation parameter is available in the LoadState method
/// in addition to page state preserved during an earlier session.
/// </para>
/// </summary>
/// <param name="e">Provides data for navigation methods and event
/// handlers that cannot cancel the navigation request.</param>
protected override void OnNavigatedTo(NavigationEventArgs e)
{
this.navigationHelper.OnNavigatedTo(e);
}
protected override void OnNavigatedFrom(NavigationEventArgs e)
{
this.navigationHelper.OnNavigatedFrom(e);
}
#endregion
/// <summary>
/// Scans for BLE devices and loads list
/// </summary>
/// <returns></returns>
private async Task ScanDevices()
{
lstDevices.Items.Clear();
string genericUUID = GattDeviceService.GetDeviceSelectorFromUuid(GattServiceUuids.GenericAccess);
try
{
foreach (DeviceInformation di in await DeviceInformation.FindAllAsync(genericUUID))
{
BluetoothLEDevice bleDevice = await BluetoothLEDevice.FromIdAsync(di.Id);
lstDevices.Items.Add(new MyBluetoothLEDevice(bleDevice));
}
}
catch
{
}
}
/// <summary>
/// Loads GATT services when device list item is tapped
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void lstDevices_Tapped(object sender, TappedRoutedEventArgs e)
{
currentDevice = (lstDevices.SelectedItem as MyBluetoothLEDevice).BluetoothLEDevice;
LoadGattServices();
}
/// <summary>
/// Loads GATT services information in list and attaches to CapSense and RGB led custom services if available.
/// </summary>
private void LoadGattServices()
{
if (currentCapSenseCharacteristic != null)
currentCapSenseCharacteristic.ValueChanged -= currentCapSenseCharacteristic_ValueChanged;
currentCapSenseCharacteristic = null;
currentRGBLedCharacteristic = null;
lstGattServices.Items.Clear();
lstCharacteristics.Items.Clear();
string description = string.Empty;
foreach (var service in currentDevice.GattServices)
{
description = UUIDHelper.GetUUIDDescription(service.Uuid.ToString());
lstGattServices.Items.Add(new MyGattService(description, service));
foreach (var characteristic in service.GetAllCharacteristics())
{
if (characteristic.Uuid == Guid.Parse("0000caa2-0000-1000-8000-00805f9b34fb"))
AttachToCapSense(characteristic);
else if (characteristic.Uuid == Guid.Parse("0000cbb1-0000-1000-8000-00805f9b34fb"))
AttachToRGBLed(characteristic);
}
}
}
/// <summary>
/// Loads characteristics when GATT service is selected
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void lstGattServices_Tapped(object sender, TappedRoutedEventArgs e)
{
await Task.Delay(1);
lstCharacteristics.Items.Clear();
GattDeviceService selectedService = (lstGattServices.SelectedItem as MyGattService).GattDeviceService;
foreach (var characteristic in selectedService.GetAllCharacteristics())
{
lstCharacteristics.Items.Add(characteristic.UserDescription + " " + characteristic.Uuid);
}
}
/// <summary>
/// Handle Characteristics_Tapped here
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void lstCharacteristics_Tapped(object sender, TappedRoutedEventArgs e)
{
await Task.Delay(1);
}
/// <summary>
/// Reloads devices
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void ButtonRefresh_Click(object sender, RoutedEventArgs e)
{
this.currentDevice = null;
await ScanDevices();
}
/// <summary>
/// Attaches valuechanged to capsense characteristic
/// </summary>
/// <param name="characteristic"></param>
private async void AttachToCapSense(GattCharacteristic characteristic)
{
currentCapSenseCharacteristic = characteristic;
currentCapSenseCharacteristic.ValueChanged += currentCapSenseCharacteristic_ValueChanged;
GattCommunicationStatus status = await characteristic.WriteClientCharacteristicConfigurationDescriptorAsync(GattClientCharacteristicConfigurationDescriptorValue.Notify);
if (status == GattCommunicationStatus.Unreachable)
{
MessageDialog dialog = new MessageDialog("Sensor not connected or out of range");
await dialog.ShowAsync();
}
}
/// <summary>
/// Handles value changed of capsense slider
/// </summary>
/// <param name="sender"></param>
/// <param name="args"></param>
private async void currentCapSenseCharacteristic_ValueChanged(GattCharacteristic sender, GattValueChangedEventArgs args)
{
var data = new byte[args.CharacteristicValue.Length];
DataReader.FromBuffer(args.CharacteristicValue).ReadBytes(data);
int value = Convert.ToInt32(data[0]);
await this.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
{
double height = (CapSneseOuterGrid.ActualHeight / 100) * value;
CapSneseSliderGrid.Height = height;
});
}
/// <summary>
/// Remembers current RGB led characteristic
/// </summary>
/// <param name="characteristic"></param>
private void AttachToRGBLed(GattCharacteristic characteristic)
{
currentRGBLedCharacteristic = characteristic;
}
/// <summary>
/// Sends RGB data when Brightness changes
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void SliderBrightness_ValueChanged(object sender, RangeBaseValueChangedEventArgs e)
{
if (ColorPicker != null)
await SendRGBLedData(e.NewValue, ColorPicker.RedValue, ColorPicker.GreenValue, ColorPicker.BlueValue);
}
/// <summary>
/// Sends RGB data when color is selected
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void ColorPicker_Tapped(object sender, TappedRoutedEventArgs e)
{
await SendRGBLedData(BrightnessSlider.Value, ColorPicker.RedValue, ColorPicker.GreenValue, ColorPicker.BlueValue);
}
/// <summary>
/// Sends RGB led data
/// </summary>
/// <param name="brightness"></param>
/// <param name="red"></param>
/// <param name="green"></param>
/// <param name="blue"></param>
/// <returns></returns>
private async Task SendRGBLedData(double brightness, int red, int green, int blue)
{
if (currentRGBLedCharacteristic != null)
{
byte[] sensorData = new byte[4] { Convert.ToByte(red), Convert.ToByte(green), Convert.ToByte(blue), Convert.ToByte((int)brightness) };
GattCommunicationStatus status = await currentRGBLedCharacteristic.WriteValueAsync(sensorData.AsBuffer());
if (status == GattCommunicationStatus.Unreachable)
{
MessageDialog dialog = new MessageDialog("Sensor not connected or out of range");
await dialog.ShowAsync();
}
}
}
}
}