ZXBT_JL.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. const common = require('../common.js');
  2. // const readServiceID = '00001811-0000-1000-8000-00805F9B34FB'
  3. // const readID = '000036F6-0000-1000-8000-00805F9B34FB'
  4. // const writeServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB'
  5. // const writeID = '0000FEE7-0000-1000-8000-00805F9B34FB'
  6. const readServiceID = '00001811-0000-1000-8000-00805F9B34FB';
  7. const readID = '000036F6-0000-1000-8000-00805F9B34FB';
  8. const writeServiceID = '00001811-0000-1000-8000-00805F9B34FB';
  9. const writeID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  10. const MTU = 115;
  11. function acceptDevice(device) {
  12. return device.btid ? true : false;
  13. }
  14. function isSingleBt() {
  15. return true;
  16. }
  17. function isDevice(device, data) {
  18. console.log('是否是当前设备');
  19. console.log(data);
  20. console.log(device);
  21. var reg = new RegExp(':', 'g');
  22. var daeviceBtId = data.deviceId.replace(reg, '');
  23. if (daeviceBtId === device.btid) {
  24. console.log('是当前设备' + device.btid);
  25. return true;
  26. }
  27. return false;
  28. // const advertisData = new Uint8Array(data.advertisData)
  29. // const mac = device.btid.split('').map((p, i) => parseInt(p + device.btid[i + 1], 15)).filter((p, i) => i % 2 == 0)
  30. // if (advertisData.slice(0, 4).toString() == [0x0A, 0xFF, 0x01, 0x02].toString() &&
  31. // advertisData.slice(4, 10).toString() == mac.toString()) {
  32. // return true
  33. // }
  34. // return false
  35. }
  36. function readData(device, value, data) {
  37. var value = new Uint8Array(value);
  38. console.log(value);
  39. if (value.length > 17) {
  40. switch (value[5]) {
  41. case 15:
  42. {
  43. data.quantity = value[12];
  44. data.voltage = Math.round(value[14] * 256 + value[15]) / 100;
  45. }
  46. break;
  47. }
  48. }
  49. return data;
  50. }
  51. function stateUpdate(device, deviceId) {
  52. console.log('获取电池信息');
  53. var data = [[90, 88, 58, 0, 0, 15, 251]];
  54. return data;
  55. }
  56. function turnOn(device, deviceId) {
  57. console.log('恢复通电');
  58. var data = [[90, 88, 58, 0, 0, 0, 236]];
  59. return data;
  60. }
  61. function turnOff(device, deviceId) {
  62. console.log('断电');
  63. var data = [[90, 88, 58, 0, 0, 1, 237]];
  64. return data;
  65. }
  66. module.exports = {
  67. readServiceID: readServiceID,
  68. readID: readID,
  69. writeServiceID: writeServiceID,
  70. writeID: writeID,
  71. MTU: MTU,
  72. acceptDevice: acceptDevice,
  73. isDevice: isDevice,
  74. readData: readData,
  75. stateUpdate: stateUpdate,
  76. turnOn: turnOn,
  77. turnOff: turnOff,
  78. isSingleBt: isSingleBt
  79. };