ZXBT.js 2.1 KB

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