index.js 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. // (c) 2014-2015 Don Coleman
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. /* global mainPage, deviceList, refreshButton */
  15. /* global detailPage, buttonState, ledButton, disconnectButton */
  16. /* global ble, cordova */
  17. /* jshint browser: true , devel: true*/
  18. 'use strict';
  19. var arrayBufferToInt = function (ab) {
  20. var a = new Uint8Array(ab);
  21. return a[0];
  22. };
  23. var rfduino = {
  24. serviceUUID: "2220",
  25. receiveCharacteristic: "2221",
  26. sendCharacteristic: "2222",
  27. disconnectCharacteristic: "2223"
  28. };
  29. // returns advertising data as hashmap of byte arrays keyed by type
  30. // advertising data is length, type, data
  31. // https://www.bluetooth.org/en-us/specification/assigned-numbers/generic-access-profile
  32. function parseAdvertisingData(bytes) {
  33. var length, type, data, i = 0, advertisementData = {};
  34. while (length !== 0) {
  35. length = bytes[i] & 0xFF;
  36. i++;
  37. type = bytes[i] & 0xFF;
  38. i++;
  39. data = bytes.slice(i, i + length - 1); // length includes type byte, but not length byte
  40. i += length - 2; // move to end of data
  41. i++;
  42. advertisementData[type] = data;
  43. }
  44. return advertisementData;
  45. }
  46. // RFduino advertises the sketch its running in the Manufacturer field 0xFF
  47. // RFduino provides a UART-like service so all sketchs look the same (0x2220)
  48. // This RFduino "service" name is used to different functions on the boards
  49. var getRFduinoService = function(scanRecord) {
  50. var mfgData;
  51. if (cordova.platformId === 'ios') {
  52. mfgData = arrayBufferToIntArray(scanRecord.kCBAdvDataManufacturerData);
  53. } else { // android
  54. var ad = parseAdvertisingData(arrayBufferToIntArray(scanRecord));
  55. mfgData = ad[0xFF];
  56. }
  57. if (mfgData) {
  58. // ignore 1st 2 bytes of mfg data
  59. return bytesToString(mfgData.slice(2));
  60. } else {
  61. return "";
  62. }
  63. };
  64. // Convert ArrayBuffer to int[] for easier processing.
  65. // If Uint8Array.slice worked, this would be unnecessary
  66. var arrayBufferToIntArray = function(buffer) {
  67. var result;
  68. if (buffer) {
  69. var typedArray = new Uint8Array(buffer);
  70. result = [];
  71. for (var i = 0; i < typedArray.length; i++) {
  72. result[i] = typedArray[i];
  73. }
  74. }
  75. return result;
  76. };
  77. var bytesToString = function (bytes) {
  78. var bytesAsString = "";
  79. for (var i = 0; i < bytes.length; i++) {
  80. bytesAsString += String.fromCharCode(bytes[i]);
  81. }
  82. return bytesAsString;
  83. };
  84. var app = {
  85. initialize: function() {
  86. this.bindEvents();
  87. detailPage.hidden = true;
  88. },
  89. bindEvents: function() {
  90. document.addEventListener('deviceready', this.onDeviceReady, false);
  91. refreshButton.addEventListener('touchstart', this.refreshDeviceList, false);
  92. ledButton.addEventListener('touchstart', this.sendData, false);
  93. ledButton.addEventListener('touchend', this.sendData, false);
  94. disconnectButton.addEventListener('touchstart', this.disconnect, false);
  95. deviceList.addEventListener('touchstart', this.connect, false); // assume not scrolling
  96. },
  97. onDeviceReady: function() {
  98. app.refreshDeviceList();
  99. },
  100. refreshDeviceList: function() {
  101. deviceList.innerHTML = ''; // empties the list
  102. ble.scan([rfduino.serviceUUID], 5, app.onDiscoverDevice, app.onError);
  103. },
  104. onDiscoverDevice: function(device) {
  105. var listItem = document.createElement('li'),
  106. html = '<b>' + device.name + '</b><br/>' +
  107. 'RSSI: ' + device.rssi + '&nbsp;|&nbsp;' +
  108. 'Advertising: ' + getRFduinoService(device.advertising) + '<br/>' +
  109. device.id;
  110. listItem.dataset.deviceId = device.id;
  111. listItem.innerHTML = html;
  112. deviceList.appendChild(listItem);
  113. },
  114. connect: function(e) {
  115. var deviceId = e.target.dataset.deviceId,
  116. onConnect = function() {
  117. // subscribe for incoming data
  118. ble.startNotification(deviceId, rfduino.serviceUUID, rfduino.receiveCharacteristic, app.onData, app.onError);
  119. disconnectButton.dataset.deviceId = deviceId;
  120. ledButton.dataset.deviceId = deviceId;
  121. app.showDetailPage();
  122. };
  123. ble.connect(deviceId, onConnect, app.onError);
  124. },
  125. onData: function(data) { // data received from rfduino
  126. console.log(data);
  127. var buttonValue = arrayBufferToInt(data);
  128. if (buttonValue === 1) {
  129. buttonState.innerHTML = "Button Pressed";
  130. } else {
  131. buttonState.innerHTML = "Button Released";
  132. }
  133. },
  134. sendData: function(event) { // send data to rfduino
  135. var success = function() {
  136. console.log("success");
  137. };
  138. var failure = function() {
  139. alert("Failed writing data to the rfduino");
  140. };
  141. var data = new Uint8Array(1);
  142. data[0] = event.type === 'touchstart' ? 0x1 : 0x0;
  143. var deviceId = event.target.dataset.deviceId;
  144. ble.writeWithoutResponse(deviceId, rfduino.serviceUUID, rfduino.sendCharacteristic, data.buffer, success, failure);
  145. },
  146. disconnect: function(event) {
  147. var deviceId = event.target.dataset.deviceId;
  148. ble.disconnect(deviceId, app.showMainPage, app.onError);
  149. },
  150. showMainPage: function() {
  151. mainPage.hidden = false;
  152. detailPage.hidden = true;
  153. },
  154. showDetailPage: function() {
  155. mainPage.hidden = true;
  156. detailPage.hidden = false;
  157. },
  158. onError: function(reason) {
  159. alert("ERROR: " + reason); // real apps should use notification.alert
  160. }
  161. };