LSBMS.js 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. const bluetooth = require('../bluetooth.js');
  2. const parse = require('./blueParse/LSBMS.js');
  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 common = require('../common.js');
  8. const app = getApp();
  9. const MTU = 115;
  10. var curTime = 0;
  11. var isEndPackage = true;
  12. var total_length = 0;
  13. var functionCode = 0;
  14. var functionList = [0, 0, 0];
  15. function acceptDevice(device) {
  16. return device.btid ? true : false;
  17. }
  18. function isSingleBt() {
  19. return true;
  20. }
  21. function isDevice(device, data) {
  22. const advertisData = new Uint8Array(data.advertisData);
  23. const mac = device.btid
  24. .split('')
  25. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  26. .filter((p, i) => i % 2 == 0);
  27. if (advertisData.slice(0, 4).toString() == [0x09, 0xff, 0x01, 0x02].toString() && advertisData.slice(4, 10).toString() == mac.toString()) {
  28. return true;
  29. }
  30. return false;
  31. }
  32. function sendCommand(cmd, data = []) {
  33. data = [cmd, data.length].concat(data);
  34. return common.completArrayCRC(data, data.length);
  35. } // 鉴权
  36. function alterConnect(device, deviceId) {
  37. return [sendCommand(0x01, [0xab, 0xcd, 0xab, 0xcd])];
  38. }
  39. function readData(device, value, data) {
  40. var value = new Uint8Array(value);
  41. let macid = device.mac_id;
  42. if (!isEndPackage) {
  43. var endTime = new Date().getTime();
  44. if (endTime - curTime < 800) {
  45. curTime = endTime;
  46. var bms_data = mergeUint8Array(app.globalData.deviceBTBMSBuf[macid].bms_origin_data, value);
  47. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  48. if (bms_data.length === total_length) {
  49. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data.slice(0, -1);
  50. if (functionCode === 0x1e) {
  51. functionList.splice(0, 1, app.globalData.deviceBTBMSBuf[macid].bms_origin_data);
  52. }
  53. if (functionCode === 0x20) {
  54. functionList.splice(2, 1, app.globalData.deviceBTBMSBuf[macid].bms_origin_data);
  55. }
  56. if (functionList[0] != 0 && functionList[1] != 0 && functionList[2] != 0) {
  57. data = loadDoneBmsInfo(functionList, macid);
  58. }
  59. isEndPackage = true;
  60. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
  61. }
  62. } else {
  63. isEndPackage = true;
  64. }
  65. }
  66. switch (value[0]) {
  67. case 0x3b:
  68. {
  69. if (value[4] === 0x1e) {
  70. functionCode = 0x1e;
  71. curTime = new Date().getTime();
  72. isEndPackage = false;
  73. total_length = value[5] + 1;
  74. var bmsData = value.slice(6);
  75. if (bmsData.length === total_length) {
  76. isEndPackage = true;
  77. }
  78. app.globalData.deviceBTBMSBuf[macid] = {
  79. bms_origin_data: null
  80. };
  81. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bmsData;
  82. }
  83. if (value[4] === 0x1f) {
  84. functionCode = 0x1f;
  85. curTime = new Date().getTime();
  86. isEndPackage = false;
  87. total_length = value[5] + 1;
  88. var bmsData = value.slice(6);
  89. if (bmsData.length === total_length) {
  90. isEndPackage = true;
  91. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bmsData.slice(0, -1);
  92. functionList.splice(1, 1, app.globalData.deviceBTBMSBuf[macid].bms_origin_data);
  93. if (functionList[0] != 0 && functionList[1] != 0 && functionList[2] != 0) {
  94. data = loadDoneBmsInfo(functionList, macid);
  95. }
  96. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
  97. }
  98. app.globalData.deviceBTBMSBuf[macid] = {
  99. bms_origin_data: null
  100. };
  101. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bmsData;
  102. }
  103. if (value[4] === 0x20) {
  104. functionCode = 0x20;
  105. curTime = new Date().getTime();
  106. isEndPackage = false;
  107. total_length = value[5] + 1;
  108. var bmsData = value.slice(6);
  109. if (bmsData.length === total_length) {
  110. isEndPackage = true;
  111. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bmsData.slice(0, -1);
  112. functionList.splice(2, 1, app.globalData.deviceBTBMSBuf[macid].bms_origin_data);
  113. if (functionList[0] != 0 && functionList[1] != 0 && functionList[2] != 0 && functionList[3] != 0) {
  114. data = loadDoneBmsInfo(functionList, macid);
  115. }
  116. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
  117. }
  118. app.globalData.deviceBTBMSBuf[macid] = {
  119. bms_origin_data: null
  120. };
  121. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bmsData;
  122. }
  123. }
  124. break;
  125. }
  126. return data;
  127. }
  128. function loadDoneBmsInfo(functionList, macid) {
  129. var data = parse.parseBmsData(functionList[0], functionList[1], functionList[2]); //common.reportBluetooth(macid,functionList[0],functionList[1],functionList[2])
  130. data.voltage = data.state.voltageAll;
  131. data.electric_quantity = data.state.soc;
  132. data.soh = data.state.soh;
  133. data.temp = data.state.temp.length != 0 ? data.state.temp[0] : 0;
  134. return data;
  135. }
  136. function stateUpdate(device, deviceId) {
  137. console.log('读电压');
  138. return [
  139. [0x3a, 0x7e, 0x01, 0x01, 0x1e, 0x00, 0xd8],
  140. [0x3a, 0x7e, 0x01, 0x01, 0x1f, 0x00, 0xd9],
  141. [0x3a, 0x7e, 0x01, 0x01, 0x20, 0x00, 0xda]
  142. ];
  143. }
  144. function turnOn(device, deviceId) {
  145. console.log('通电'); //return [sendCommand(0x03, [0xaa])]
  146. return [[0x3a, 0x7e, 0x01, 0x00, 0x3c, 0x04, 0xff, 0x01, 0xff, 0xff, 0xf7]];
  147. }
  148. function turnOff(device, deviceId) {
  149. return [[0x3a, 0x7e, 0x01, 0x00, 0x3c, 0x04, 0xff, 0x00, 0xff, 0xff, 0xf6]];
  150. }
  151. function mergeUint8Array(arr1, arr2) {
  152. let len1 = arr1 ? arr1.length : 0;
  153. let len2 = arr2.length;
  154. let arr = new Uint8Array(len1 + len2);
  155. for (let i = 0; i < len1; i++) {
  156. arr[i] = arr1[i];
  157. }
  158. for (let i = 0; i < len2; i++) {
  159. arr[len1 + i] = arr2[i];
  160. }
  161. return arr;
  162. } // function bmsInfo(){
  163. // }
  164. module.exports = {
  165. readServiceID: readServiceID,
  166. readID: readID,
  167. writeServiceID: writeServiceID,
  168. writeID: writeID,
  169. MTU: MTU,
  170. acceptDevice: acceptDevice,
  171. // bmsInfo: bmsInfo,
  172. isDevice: isDevice,
  173. alterConnect: alterConnect,
  174. readData: readData,
  175. stateUpdate: stateUpdate,
  176. turnOn: turnOn,
  177. turnOff: turnOff,
  178. isSingleBt: isSingleBt
  179. };