BLFM.js 12 KB

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