BLECentralPlugin.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. //
  2. // BLE Central Cordova Plugin
  3. //
  4. // (c) 2105 Don Coleman
  5. //
  6. // Licensed under the Apache License, Version 2.0 (the "License");
  7. // you may not use this file except in compliance with the License.
  8. // You may obtain a copy of the License at
  9. //
  10. // http://www.apache.org/licenses/LICENSE-2.0
  11. //
  12. // Unless required by applicable law or agreed to in writing, software
  13. // distributed under the License is distributed on an "AS IS" BASIS,
  14. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. // See the License for the specific language governing permissions and
  16. // limitations under the License.
  17. using System;
  18. using System.Linq;
  19. using System.Collections.Generic;
  20. using System.Diagnostics;
  21. using System.Runtime.Serialization;
  22. using Windows.Networking.Proximity;
  23. using WPCordovaClassLib.Cordova;
  24. using WPCordovaClassLib.Cordova.Commands;
  25. using WPCordovaClassLib.Cordova.JSON;
  26. using Microsoft.Phone.Tasks;
  27. using Windows.Networking;
  28. using System.Text;
  29. using System.Threading;
  30. public class BLECentralPlugin : BaseCommand
  31. {
  32. private void notImplemented()
  33. {
  34. DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR, "Not Implemented"));
  35. }
  36. public void scan(string args)
  37. {
  38. notImplemented();
  39. }
  40. public void startScan(string args)
  41. {
  42. notImplemented();
  43. }
  44. public void stopScan(string args)
  45. {
  46. notImplemented();
  47. }
  48. public void startScanWithOptions(string args)
  49. {
  50. notImplemented();
  51. }
  52. public void connect(string args)
  53. {
  54. notImplemented();
  55. }
  56. public void disconnect(string args)
  57. {
  58. notImplemented();
  59. }
  60. public void read(string args)
  61. {
  62. notImplemented();
  63. }
  64. public void readRSSI(string args)
  65. {
  66. notImplemented();
  67. }
  68. public void write(string args)
  69. {
  70. notImplemented();
  71. }
  72. public void writeWithoutResponse(string args)
  73. {
  74. notImplemented();
  75. }
  76. public void startNotification(string args)
  77. {
  78. notImplemented();
  79. }
  80. public void stopNotification(string args)
  81. {
  82. notImplemented();
  83. }
  84. public void isConnected(string args)
  85. {
  86. notImplemented();
  87. }
  88. public async void isEnabled(string args)
  89. {
  90. string callbackId = JsonHelper.Deserialize<string[]>(args)[0];
  91. // This is a bad way to do this, improve later
  92. // See if we can determine in the Connection Manager
  93. // https://msdn.microsoft.com/library/windows/apps/jj207007(v=vs.105).aspx
  94. PeerFinder.AlternateIdentities["Bluetooth:Paired"] = "";
  95. try
  96. {
  97. var peers = await PeerFinder.FindAllPeersAsync();
  98. // Handle the result of the FindAllPeersAsync call
  99. }
  100. catch (Exception ex)
  101. {
  102. if ((uint)ex.HResult == 0x8007048F)
  103. {
  104. DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR), callbackId);
  105. }
  106. else
  107. {
  108. DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR, ex.Message), callbackId);
  109. }
  110. }
  111. DispatchCommandResult(new PluginResult(PluginResult.Status.OK), callbackId);
  112. }
  113. public void showBluetoothSettings(string args)
  114. {
  115. ConnectionSettingsTask connectionSettingsTask = new ConnectionSettingsTask();
  116. connectionSettingsTask.ConnectionSettingsType = ConnectionSettingsType.Bluetooth;
  117. connectionSettingsTask.Show();
  118. DispatchCommandResult(new PluginResult(PluginResult.Status.OK));
  119. }
  120. }