ZXBT_JL.js 2.7 KB

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