BLFM.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. const common = require('../common.js');
  2. const FMBMS = require('./FMBMS.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 MTU = 115;
  8. const app = getApp();
  9. function acceptDevice(device) {
  10. return device.btid ? true : false;
  11. }
  12. function isSingleBt() {
  13. console.log('是单蓝牙');
  14. return true;
  15. }
  16. function haveBms() {
  17. console.log('是单蓝牙并且带bms');
  18. return true;
  19. }
  20. function isDevice(device, data) {
  21. const advertisData = new Uint8Array(data.advertisData);
  22. const mac = device.btid
  23. .split('')
  24. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  25. .filter((p, i) => i % 2 == 0);
  26. if (advertisData.slice(0, 4).toString() == [0x09, 0xff, 0x01, 0x02].toString() && advertisData.slice(4, 10).toString() == mac.toString()) {
  27. return true;
  28. }
  29. return false;
  30. } // function alterConnect(device, deviceId) {
  31. // return [sendCommand(0x01, [0xAB, 0xCD, 0xAB, 0xCD])]
  32. // }
  33. function readData(device, value, data) {
  34. var value = new Uint8Array(value);
  35. switch (value[0]) {
  36. case 0x44:
  37. //data.quantity = value[2]
  38. break;
  39. case 0x42:
  40. //data = FMBMS.BMSReply(value.slice(2, 2 + value[1]), data)
  41. packBmsData(device, value, data);
  42. break;
  43. }
  44. return data;
  45. }
  46. function packBmsData(device, value, data) {
  47. let macid = device.mac_id;
  48. let total_len = (value[1] << 8) | value[2];
  49. if (total_len < 50) {
  50. console.log('部分数据回应,丢弃');
  51. realWriteData(device, [[0xa2, 0x00, 0xa2]]);
  52. return false;
  53. }
  54. let bms_data = value.slice(5, -1);
  55. if (app.globalData.deviceBTBMSBuf[macid]) {
  56. // 已经有bms数据
  57. if (bms_data[0] == 0x4e && bms_data[1] == 0x57) {
  58. // 此时收到的头部为bms头,丢弃
  59. // 丢弃
  60. console.log('之前的数据:');
  61. console.log(app.globalData.deviceBTBMSBuf[macid].bms_origin_data);
  62. console.log('覆盖之前的数据');
  63. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  64. console.log('新的数据:');
  65. } else {
  66. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = mergeUint8Array(app.globalData.deviceBTBMSBuf[macid].bms_origin_data, bms_data);
  67. }
  68. } else {
  69. // 没有收到过bms
  70. if (bms_data[0] != 0x4e || bms_data[1] != 0x57) {
  71. // 不是bms头部标识
  72. // 丢弃
  73. console.log('丢弃包');
  74. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
  75. realWriteData(device, [[0xa2, 0x00, 0xa2]]); //realWriteData(device, [[0xa2, 0x01, 0xa2]])
  76. return false;
  77. }
  78. app.globalData.deviceBTBMSBuf[macid] = {
  79. bms_origin_data: bms_data
  80. };
  81. }
  82. console.log('BMS 数据');
  83. console.log(app.globalData.deviceBTBMSBuf[macid].bms_origin_data);
  84. realWriteData(device, [[0xa2, 0x00, 0xa2]]);
  85. if (total_len == app.globalData.deviceBTBMSBuf[macid].bms_origin_data.length) {
  86. console.log('收到一个完整包');
  87. let bmsOriginData = app.globalData.deviceBTBMSBuf[macid].bms_origin_data;
  88. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
  89. FMBMS.BMSReply(bmsOriginData, data);
  90. return true;
  91. }
  92. return false;
  93. }
  94. function mergeUint8Array(arr1, arr2) {
  95. let len1 = arr1 ? arr1.length : 0;
  96. let len2 = arr2.length;
  97. let arr = new Uint8Array(len1 + len2);
  98. for (let i = 0; i < len1; i++) {
  99. arr[i] = arr1[i];
  100. }
  101. for (let i = 0; i < len2; i++) {
  102. arr[len1 + i] = arr2[i];
  103. }
  104. return arr;
  105. }
  106. function getDeviceIdByMacid(macid) {
  107. let deviceid = '';
  108. for (let i = 0; i < macid.length; i++) {
  109. if (i != 0 && i % 2 == 0) deviceid += ':';
  110. deviceid += macid[i];
  111. }
  112. return deviceid;
  113. }
  114. function realWriteData(device, data, callback = () => {}, fail = () => {}) {
  115. if (data.length == 0) return;
  116. let deviceId = getDeviceIdByMacid(device.mac_id);
  117. const buffer = common.toArrayBuffer(data.shift());
  118. console.log(buffer);
  119. uni.writeBLECharacteristicValue({
  120. deviceId: deviceId,
  121. serviceId: writeServiceID,
  122. characteristicId: writeID,
  123. value: buffer,
  124. success(res) {
  125. console.log('分包回复成功');
  126. console.log(res);
  127. if (data.length == 0) {
  128. callback(res);
  129. } else {
  130. setTimeout(() => {
  131. writeData(device, deviceId, data, callback, fail);
  132. }, 500);
  133. }
  134. },
  135. fail(res) {
  136. console.log('分包回复失败');
  137. console.log(res);
  138. fail(res);
  139. }
  140. });
  141. }
  142. function sendCommand(cmd, data = []) {
  143. //data = [cmd, data.length].concat(data)
  144. if (cmd == 0x02) {
  145. data = [cmd, (data.length & 0xff00) >> 8, data.length & 0x00ff, data.length, 0].concat(data);
  146. } else {
  147. data = [cmd, data.length].concat(data);
  148. }
  149. return common.completArrayCRC(data, data.length);
  150. }
  151. function stateUpdate(device, deviceId) {
  152. return [sendCommand(0x04), sendCommand(0x02, FMBMS.BMSRead())]; //return [[0x02,0x00,0x15,0x15,0x00,0x4e,0x57,0x00,0x13,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x01,0x27,0x7b]]
  153. }
  154. function turnOn(device, deviceId) {
  155. return [sendCommand(0x02, FMBMS.BMSTurnOn())];
  156. }
  157. function turnOff(device, deviceId) {
  158. return [sendCommand(0x02, FMBMS.BMSTurnOff())];
  159. }
  160. function bmsChargingMOS(value) {
  161. return [sendCommand(0x02, FMBMS.bmsChargingMOS(value))];
  162. }
  163. function bmsDischargeMOS(value) {
  164. return [sendCommand(0x02, FMBMS.bmsDischargeMOS(value))];
  165. }
  166. function bmsInfo(device, deviceId, info) {
  167. let power = info.voltage * info.current * 0.001;
  168. if (power < 0) power = power * -1;
  169. return {
  170. state: {
  171. voltage: info.voltageList ? info.voltageList : [],
  172. temp: info.temp ? [info.temp] : [],
  173. voltageAll: info.voltage ? info.voltage : 0,
  174. current: info.current ? info.current : 0,
  175. soc: info.soc ? info.soc : 0,
  176. maxVoltage: info.maxVoltage,
  177. minVoltage: info.minVoltage,
  178. maxTemp: info.temp,
  179. minTemp: info.temp,
  180. chargeState: info.chargeState,
  181. socAH: info.soc * 0.01 * info.capacity,
  182. count: info.count,
  183. tempCount: info.tempCount,
  184. cycle: info.cycle,
  185. equilibrium: info.equilibrium,
  186. chargingMOS: info.chargeProtectState,
  187. dischargeMOS: info.dischargeProtectState,
  188. averageVoltage: info.sumVoltage / info.count,
  189. voltagDifference: info.maxVoltage - info.minVoltage,
  190. power: power,
  191. capacity: info.capacity,
  192. firmware: info.firmware,
  193. dischargeMOSOnOff: info.dischargeProtectState,
  194. chargingMOSOnOff: info.chargeProtectState
  195. },
  196. btsets: [
  197. {
  198. class: '高低温保护阀值',
  199. name: 'AU10',
  200. vars: [
  201. {
  202. label: '低温保护阀值',
  203. name: 'AU100',
  204. type: 'number',
  205. value: ''
  206. },
  207. {
  208. label: '高温保护阀值',
  209. name: 'AU101',
  210. type: 'number',
  211. value: ''
  212. }
  213. ]
  214. },
  215. {
  216. class: '充放电保护电压',
  217. name: 'AU12',
  218. vars: [
  219. {
  220. label: '充电保护电压',
  221. name: 'AU120',
  222. type: 'number',
  223. value: ''
  224. },
  225. {
  226. label: '放电保护电压',
  227. name: 'AU121',
  228. type: 'number',
  229. value: ''
  230. }
  231. ]
  232. },
  233. {
  234. class: '充放电保护开关',
  235. name: 'AU13',
  236. vars: [
  237. {
  238. label: '充电保护',
  239. name: 'AU130',
  240. type: 'radio',
  241. option: [
  242. {
  243. label: '关闭',
  244. value: '0'
  245. },
  246. {
  247. label: '开启',
  248. value: '1'
  249. }
  250. ],
  251. value: ''
  252. },
  253. {
  254. label: '放电保护',
  255. name: 'AU131',
  256. type: 'radio',
  257. option: [
  258. {
  259. label: '关闭',
  260. value: '0'
  261. },
  262. {
  263. label: '开启',
  264. value: '1'
  265. }
  266. ],
  267. value: ''
  268. }
  269. ]
  270. },
  271. {
  272. class: '充放电保护恢复电压',
  273. name: 'AU14',
  274. vars: [
  275. {
  276. label: '充电保护恢复电压',
  277. name: 'AU140',
  278. type: 'number',
  279. value: ''
  280. },
  281. {
  282. label: '放电保护恢复电压',
  283. name: 'AU141',
  284. type: 'number',
  285. value: ''
  286. }
  287. ]
  288. },
  289. {
  290. class: '高低温保护恢复值',
  291. name: 'AU15',
  292. vars: [
  293. {
  294. label: '低温保护恢复值',
  295. name: 'AU150',
  296. type: 'number',
  297. value: ''
  298. },
  299. {
  300. label: '高温保护恢复值',
  301. name: 'AU151',
  302. type: 'number',
  303. value: ''
  304. }
  305. ]
  306. },
  307. {
  308. class: '电池循环次数',
  309. name: 'AU16',
  310. vars: [
  311. {
  312. label: '循环次数',
  313. name: 'AU160',
  314. type: 'number',
  315. value: ''
  316. }
  317. ]
  318. },
  319. {
  320. class: 'BMS自动保护开关',
  321. name: 'AU17',
  322. vars: [
  323. {
  324. label: '自动保护',
  325. name: 'AU170',
  326. type: 'radio',
  327. option: [
  328. {
  329. label: '关闭',
  330. value: '0'
  331. },
  332. {
  333. label: '开启',
  334. value: '1'
  335. }
  336. ],
  337. value: ''
  338. }
  339. ]
  340. }
  341. ]
  342. };
  343. }
  344. function bmsSet(device, deviceId, name, vars) {
  345. return false;
  346. }
  347. module.exports = {
  348. readServiceID: readServiceID,
  349. readID: readID,
  350. writeServiceID: writeServiceID,
  351. writeID: writeID,
  352. MTU: MTU,
  353. acceptDevice: acceptDevice,
  354. isDevice: isDevice,
  355. // alterConnect: alterConnect,
  356. readData: readData,
  357. stateUpdate: stateUpdate,
  358. turnOn: turnOn,
  359. turnOff: turnOff,
  360. bmsInfo: bmsInfo,
  361. bmsSet: bmsSet,
  362. isSingleBt: isSingleBt,
  363. haveBms: haveBms,
  364. bmsChargingMOS: bmsChargingMOS,
  365. bmsDischargeMOS: bmsDischargeMOS
  366. };