ZXBT.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. const common = require('../common.js');
  2. const readServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  3. const readID = '000036F6-0000-1000-8000-00805F9B34FB';
  4. const writeServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  5. const writeID = '000036F5-0000-1000-8000-00805F9B34FB';
  6. const MTU = 115;
  7. function acceptDevice(device) {
  8. return device.btid ? true : false;
  9. }
  10. function isSingleBt() {
  11. return true;
  12. }
  13. function isDevice(device, data) {
  14. const advertisData = new Uint8Array(data.advertisData);
  15. const mac = device.btid
  16. .split('')
  17. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  18. .filter((p, i) => i % 2 == 0);
  19. if (advertisData.slice(0, 4).toString() == [0x09, 0xff, 0x01, 0x02].toString() && advertisData.slice(4, 10).toString() == mac.toString()) {
  20. return true;
  21. }
  22. return false;
  23. }
  24. function sendCommand(cmd, data = []) {
  25. data = [cmd, data.length].concat(data);
  26. return common.completArrayCRC(data, data.length);
  27. } // 鉴权
  28. function alterConnect(device, deviceId) {
  29. return [sendCommand(0x01, [0xab, 0xcd, 0xab, 0xcd])];
  30. }
  31. function readData(device, value, data) {
  32. var value = new Uint8Array(value);
  33. console.log(value);
  34. switch (value[0]) {
  35. case 0x44:
  36. data.voltage = (((value[2] << 8) | value[3]) / 100).toFixed(2);
  37. break;
  38. case 0x42:
  39. //data = FMBMS.BMSReply(value.slice(2, 2 + value[1]), data)
  40. break;
  41. }
  42. return data;
  43. }
  44. function stateUpdate(device, deviceId) {
  45. // console.log('读电压')
  46. return [sendCommand(0x04)];
  47. }
  48. function turnOn(device, deviceId) {
  49. console.log('通电');
  50. return [sendCommand(0x03, [0xaa])];
  51. }
  52. function turnOff(device, deviceId) {
  53. console.log('断电');
  54. return [sendCommand(0x03, [0xbb])];
  55. }
  56. module.exports = {
  57. readServiceID: readServiceID,
  58. readID: readID,
  59. writeServiceID: writeServiceID,
  60. writeID: writeID,
  61. MTU: MTU,
  62. acceptDevice: acceptDevice,
  63. isDevice: isDevice,
  64. alterConnect: alterConnect,
  65. readData: readData,
  66. stateUpdate: stateUpdate,
  67. turnOn: turnOn,
  68. turnOff: turnOff,
  69. isSingleBt: isSingleBt
  70. };