ZXBTS.js 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. const common = require('../common.js');
  2. const app = getApp();
  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 = 128;
  8. var joinPack = [];
  9. var lastLength = 0;
  10. var curTime = 0;
  11. var stateRepeatTime = 0;
  12. var readRepeatTime = 0;
  13. function acceptDevice(device) {
  14. return device.btid ? true : false;
  15. }
  16. function isSingleBt() {
  17. return true;
  18. }
  19. function haveBms() {
  20. console.log('是单蓝牙并且带bms');
  21. return true;
  22. }
  23. function isDevice(device, data) {
  24. const advertisData = new Uint8Array(data.advertisData);
  25. const mac = device.btid
  26. .split('')
  27. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  28. .filter((p, i) => i % 2 == 0);
  29. if (advertisData.slice(0, 4).toString() == [0x09, 0xff, 0x01, 0x02].toString() && 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 alterConnect(device, deviceId) {
  39. return [sendCommand(0x01, [0xab, 0xcd, 0xab, 0xcd])];
  40. }
  41. function readData(device, value, data) {
  42. if (device.bms == 0) {
  43. var value = new Uint8Array(value);
  44. switch (value[0]) {
  45. case 0x44:
  46. if (value.length == 5) {
  47. data.voltage = (((value[2] << 8) | value[3]) / 100).toFixed(2);
  48. }
  49. break;
  50. case 0x42:
  51. break;
  52. }
  53. var endTime = new Date().getTime();
  54. if (endTime - curTime < 15000) return;
  55. if (value[0] != 0x44 && value.length != 5) return;
  56. if (endTime - curTime > 15000) {
  57. if (value[0] == 0x44) {
  58. curTime = new Date().getTime();
  59. }
  60. return data;
  61. }
  62. } else {
  63. var value = new Uint8Array(value);
  64. console.log(value);
  65. switch (value[0]) {
  66. case 0x42:
  67. data = packBmsData(device, value, data);
  68. return data;
  69. break;
  70. }
  71. }
  72. }
  73. function packBmsData(device, value, data) {
  74. if (value) {
  75. if (value[1] === value.length - 6) {
  76. var totalPackLength = value[2] * 0x100 + value[3];
  77. if (totalPackLength !== lastLength) {
  78. joinPack = [];
  79. }
  80. lastLength = totalPackLength;
  81. if (totalPackLength > joinPack.length && totalPackLength > 50) {
  82. if (value.length > 4 && value[4] !== 0) {
  83. var pack = value.slice(5, -1);
  84. if (joinPack.length === 0) {
  85. joinPack = pack;
  86. } else {
  87. joinPack = mergeUint8Array(joinPack, pack);
  88. }
  89. }
  90. if (value.length > 4 && value[4] === 0) {
  91. var endTime = new Date().getTime();
  92. if (endTime - readRepeatTime > 15000) {
  93. //防止多条数据重发
  94. var pack = value.slice(5, -1);
  95. joinPack = mergeUint8Array(joinPack, pack);
  96. readRepeatTime = endTime;
  97. data = joinPack;
  98. joinPack = [];
  99. return data;
  100. } else {
  101. joinPack = [];
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }
  108. function sendDataCommand(data) {
  109. data = [0x02, data.length, (data.length & 0xff00) >> 8, data.length & 0x00ff, 0].concat(data);
  110. return common.completArrayCRC(data, data.length);
  111. }
  112. function mergeUint8Array(arr1, arr2) {
  113. let len1 = arr1 ? arr1.length : 0;
  114. let len2 = arr2.length;
  115. let arr = new Uint8Array(len1 + len2);
  116. for (let i = 0; i < len1; i++) {
  117. arr[i] = arr1[i];
  118. }
  119. for (let i = 0; i < len2; i++) {
  120. arr[len1 + i] = arr2[i];
  121. }
  122. return arr;
  123. }
  124. function stateUpdate(device, deviceId) {
  125. if (device.bms == 0) {
  126. curTime = 0;
  127. return [sendCommand(0x04)];
  128. } else {
  129. readRepeatTime = 0;
  130. var endTime = new Date().getTime();
  131. if (endTime - stateRepeatTime > 3000) {
  132. //防止多条数据重发
  133. stateRepeatTime = endTime;
  134. const bluetoothConfig = app.globalData.bluetoothConfig;
  135. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  136. var readCommandList = bluetoothConfig[device.device_type].read;
  137. var commandList = [];
  138. for (var i = 0; readCommandList.length > i; i++) {
  139. var list = hexToList(readCommandList[i]);
  140. commandList.push(sendDataCommand(list));
  141. }
  142. return commandList;
  143. }
  144. }
  145. }
  146. }
  147. function turnOn(device, deviceId) {
  148. if (device.bms == 0) {
  149. return [sendCommand(0x03, [0xaa])];
  150. } else {
  151. readRepeatTime = 0;
  152. const bluetoothConfig = app.globalData.bluetoothConfig;
  153. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  154. var turnonCommand = bluetoothConfig[device.device_type].turnon;
  155. var commandList = [];
  156. var list = hexToList(turnonCommand);
  157. commandList.push(sendDataCommand(list));
  158. return commandList;
  159. }
  160. }
  161. }
  162. function turnOff(device, deviceId) {
  163. if (device.bms == 0) {
  164. return [sendCommand(0x03, [0xbb])];
  165. } else {
  166. readRepeatTime = 0;
  167. const bluetoothConfig = app.globalData.bluetoothConfig;
  168. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  169. var turnoffCommand = bluetoothConfig[device.device_type].turnoff;
  170. var commandList = [];
  171. var list = hexToList(turnoffCommand);
  172. commandList.push(sendDataCommand(list));
  173. return commandList;
  174. }
  175. }
  176. }
  177. function bmsDischargeMOS(value, device) {
  178. if (value == 1) {
  179. const bluetoothConfig = app.globalData.bluetoothConfig;
  180. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  181. var turnonCommand = bluetoothConfig[device.device_type].turnon;
  182. var commandList = [];
  183. var list = hexToList(turnonCommand);
  184. commandList.push(sendDataCommand(list));
  185. return commandList;
  186. }
  187. } else {
  188. const bluetoothConfig = app.globalData.bluetoothConfig;
  189. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  190. var turnoffCommand = bluetoothConfig[device.device_type].turnoff;
  191. var commandList = [];
  192. var list = hexToList(turnoffCommand);
  193. commandList.push(sendDataCommand(list));
  194. return commandList;
  195. }
  196. }
  197. }
  198. function hexToList(str) {
  199. var val = [];
  200. for (var i = 0; i < str.length / 2; i++) {
  201. val.push(parseInt(str.substring(0 + i * 2, 2 + i * 2), 16));
  202. }
  203. return val;
  204. }
  205. module.exports = {
  206. readServiceID: readServiceID,
  207. readID: readID,
  208. writeServiceID: writeServiceID,
  209. writeID: writeID,
  210. MTU: MTU,
  211. acceptDevice: acceptDevice,
  212. isDevice: isDevice,
  213. alterConnect: alterConnect,
  214. readData: readData,
  215. stateUpdate: stateUpdate,
  216. turnOn: turnOn,
  217. turnOff: turnOff,
  218. isSingleBt: isSingleBt,
  219. haveBms: haveBms,
  220. bmsDischargeMOS: bmsDischargeMOS
  221. };