LSBTS.js 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. const common = require('../common.js');
  2. const app = getApp();
  3. const BMSSet = require('./BMSSet/BMSSet.js');
  4. const readServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  5. const readID = '000036F6-0000-1000-8000-00805F9B34FB';
  6. const writeServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  7. const writeID = '000036F5-0000-1000-8000-00805F9B34FB';
  8. const MTU = 115;
  9. var joinPack = [];
  10. var curTime = 0;
  11. var stateRepeatTime = 0;
  12. var readRepeatTime = 0;
  13. var totalPackLength = 0;
  14. function acceptDevice(device) {
  15. return device.btid ? true : false;
  16. }
  17. function isSingleBt() {
  18. return true;
  19. }
  20. function haveBms() {
  21. console.log('是单蓝牙并且带bms');
  22. return true;
  23. }
  24. function isDevice(device, data) {
  25. const advertisData = new Uint8Array(data.advertisData);
  26. const mac = device.btid
  27. .split('')
  28. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  29. .filter((p, i) => i % 2 == 0);
  30. if (advertisData.slice(0, 4).toString() == [9, 255, 1, 2].toString() && advertisData.slice(4, 10).toString() == mac.toString()) {
  31. return true;
  32. }
  33. return false;
  34. }
  35. function sendCommand(cmd, data = []) {
  36. data = [cmd, data.length].concat(data);
  37. return common.completArrayCRC(data, data.length);
  38. }
  39. // 鉴权
  40. // function alterConnect(device, deviceId) {
  41. // return [sendCommand(0x01, [0xAB, 0xCD, 0xAB, 0xCD])]
  42. // }
  43. function readData(device, value, data) {
  44. if (device.bms == 0) {
  45. var value = new Uint8Array(value);
  46. switch (value[0]) {
  47. case 68:
  48. if (value.length == 5) {
  49. data.voltage = (((value[2] << 8) | value[3]) / 100).toFixed(2);
  50. }
  51. break;
  52. case 66:
  53. break;
  54. }
  55. var endTime = new Date().getTime();
  56. if (endTime - curTime < 15000) {
  57. return;
  58. }
  59. if (value[0] != 68 && value.length != 5) {
  60. return;
  61. }
  62. if (endTime - curTime > 15000) {
  63. if (value[0] == 68) {
  64. curTime = new Date().getTime();
  65. }
  66. return data;
  67. }
  68. } else {
  69. var value = new Uint8Array(value);
  70. var endTime = new Date().getTime();
  71. if (endTime - curTime > 3000) {
  72. curTime = new Date().getTime();
  73. data = packBmsData(device, value, data, true);
  74. return data;
  75. }
  76. if (endTime - curTime <= 3000) {
  77. data = packBmsData(device, value, data, false);
  78. return data;
  79. }
  80. }
  81. }
  82. function packBmsData(device, value, data, isInit) {
  83. if (value) {
  84. if (isInit) {
  85. joinPack = [];
  86. totalPackLength = value[2] * 256 + value[3];
  87. console.log(totalPackLength);
  88. }
  89. joinPack = mergeUint8Array(joinPack, value);
  90. console.log(joinPack);
  91. if (joinPack.length === totalPackLength + 2) {
  92. return joinPack;
  93. }
  94. }
  95. }
  96. function mergeUint8Array(arr1, arr2) {
  97. let len1 = arr1 ? arr1.length : 0;
  98. let len2 = arr2.length;
  99. let arr = new Uint8Array(len1 + len2);
  100. for (let i = 0; i < len1; i++) {
  101. arr[i] = arr1[i];
  102. }
  103. for (let i = 0; i < len2; i++) {
  104. arr[len1 + i] = arr2[i];
  105. }
  106. return arr;
  107. }
  108. function stateUpdate(device, deviceId) {
  109. if (device.bms == 0) {
  110. curTime = 0;
  111. return [sendCommand(4)];
  112. } else {
  113. readRepeatTime = 0;
  114. var endTime = new Date().getTime();
  115. if (endTime - stateRepeatTime > 3000) {
  116. //防止多条数据重发
  117. stateRepeatTime = endTime;
  118. const bluetoothConfig = app.globalData.bluetoothConfig;
  119. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  120. var readCommandList = bluetoothConfig[device.device_type].read;
  121. console.log(readCommandList);
  122. var commandList = [];
  123. for (var i = 0; readCommandList.length > i; i++) {
  124. var list = hexToList(readCommandList[i]);
  125. commandList.push(list);
  126. }
  127. console.log(commandList);
  128. return commandList;
  129. }
  130. }
  131. }
  132. }
  133. function turnOn(device, deviceId) {
  134. if (device.bms == 0) {
  135. return [sendCommand(3, [170])];
  136. } else {
  137. readRepeatTime = 0;
  138. const bluetoothConfig = app.globalData.bluetoothConfig;
  139. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  140. var turnonCommand = bluetoothConfig[device.device_type].turnon;
  141. var commandList = [];
  142. var list = hexToList(turnonCommand);
  143. commandList.push(list);
  144. return commandList;
  145. }
  146. }
  147. }
  148. function turnOff(device, deviceId) {
  149. if (device.bms == 0) {
  150. return [sendCommand(3, [187])];
  151. } else {
  152. readRepeatTime = 0;
  153. const bluetoothConfig = app.globalData.bluetoothConfig;
  154. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  155. var turnoffCommand = bluetoothConfig[device.device_type].turnoff;
  156. var commandList = [];
  157. var list = hexToList(turnoffCommand);
  158. commandList.push(list);
  159. return commandList;
  160. }
  161. }
  162. }
  163. function bmsDischargeMOS(value, device) {
  164. if (value == 1) {
  165. const bluetoothConfig = app.globalData.bluetoothConfig;
  166. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  167. var turnonCommand = bluetoothConfig[device.device_type].turnon;
  168. var commandList = [];
  169. var list = hexToList(turnonCommand);
  170. commandList.push(list);
  171. return commandList;
  172. }
  173. } else {
  174. const bluetoothConfig = app.globalData.bluetoothConfig;
  175. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  176. var turnoffCommand = bluetoothConfig[device.device_type].turnoff;
  177. var commandList = [];
  178. var list = hexToList(turnoffCommand);
  179. //this.getConsoleData(sendDataCommand(list))
  180. commandList.push(list);
  181. return commandList;
  182. }
  183. }
  184. }
  185. function bmsChargingMOS(value, device) {
  186. if (value == 1) {
  187. const bluetoothConfig = app.globalData.bluetoothConfig;
  188. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  189. var chargingMosOn = bluetoothConfig[device.device_type].chargingMosOn;
  190. var commandList = [];
  191. var list = hexToList(chargingMosOn);
  192. commandList.push(list);
  193. return commandList;
  194. }
  195. } else {
  196. const bluetoothConfig = app.globalData.bluetoothConfig;
  197. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  198. var chargingMosOff = bluetoothConfig[device.device_type].chargingMosOff;
  199. var commandList = [];
  200. var list = hexToList(chargingMosOff);
  201. commandList.push(list);
  202. return commandList;
  203. }
  204. }
  205. }
  206. function turnOnBuzzer(device, deviceId) {
  207. return [sendCommand(80, [170])];
  208. }
  209. function turnOffBuzzer(device, deviceId) {
  210. return [sendCommand(80, [187])];
  211. }
  212. function queryBaud(device, deviceId) {
  213. // console.log("下发查询波特率")
  214. // return [[0x07, 0x01, 0x08]]
  215. }
  216. function setBaud(value, device) {
  217. console.log('下发设置波特率');
  218. console.log('下发baud');
  219. console.log([sendCommand(8, [value])]);
  220. return [sendCommand(8, [value])];
  221. }
  222. function hexToList(str) {
  223. var val = [];
  224. for (var i = 0; i < str.length / 2; i++) {
  225. val.push(parseInt(str.substring(0 + i * 2, 2 + i * 2), 16));
  226. }
  227. return val;
  228. }
  229. function bmsSet(device) {
  230. if (BMSSet.isBleBmsSet(device)) {
  231. var bmsSetCmd = BMSSet.bmsSet(device);
  232. var list = hexToList(bmsSetCmd);
  233. return [list];
  234. } else {
  235. return false;
  236. }
  237. }
  238. module.exports = {
  239. readServiceID: readServiceID,
  240. readID: readID,
  241. writeServiceID: writeServiceID,
  242. writeID: writeID,
  243. MTU: MTU,
  244. acceptDevice: acceptDevice,
  245. isDevice: isDevice,
  246. // alterConnect: alterConnect,
  247. readData: readData,
  248. stateUpdate: stateUpdate,
  249. turnOn: turnOn,
  250. turnOff: turnOff,
  251. isSingleBt: isSingleBt,
  252. haveBms: haveBms,
  253. bmsDischargeMOS: bmsDischargeMOS,
  254. bmsChargingMOS: bmsChargingMOS,
  255. turnOnBuzzer: turnOnBuzzer,
  256. turnOffBuzzer: turnOffBuzzer,
  257. queryBaud: queryBaud,
  258. setBaud: setBaud,
  259. bmsSet: bmsSet
  260. };