bluetooth copy 0531.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  1. const common = require('./common.js');
  2. import SystemInfoUtil from './SystemInfoUtil.js';
  3. const BWJT = 'BWJT';
  4. const JTBMS = 'JTBMS';
  5. const app = getApp();
  6. const bluetoothDevices = {
  7. ZX16D: require('./bluetooth/ZX16D.js'),
  8. FMBMS: require('./bluetooth/FMBMS.js'),
  9. LFBMS: require('./bluetooth/LFBMS.js'),
  10. JYBMS: require('./bluetooth/LFBMS.js'),
  11. BLFM: require('./bluetooth/BLFM.js'),
  12. ZXBT: require('./bluetooth/ZXBT.js'),
  13. LSBMS: require('./bluetooth/LSBMS.js'),
  14. BWJT: require('./bluetooth/ZXBT_JL.js'),
  15. JTBMS: require('./bluetooth/ZXBT_JL.js')
  16. };
  17. //初始化蓝牙
  18. function initBluetooth() {
  19. //监听蓝牙适配器状态变化事件
  20. console.log('初始化蓝牙');
  21. uni.onBluetoothAdapterStateChange((res) => {
  22. console.log(res);
  23. Object.keys(app.globalData.adapterStateChangeFunc).forEach((n) => app.globalData.adapterStateChangeFunc[n](res));
  24. });
  25. //监听低功耗蓝牙连接状态的改变事件。包括开发者主动连接或断开连接,设备丢失,连接异常断开等等
  26. uni.onBLEConnectionStateChange((res) => {
  27. console.log(res);
  28. if (app.globalData.connectionState[res.deviceId]) {
  29. app.globalData.connectionState[res.deviceId].connected = res.connected;
  30. const device = app.globalData.connectionState[res.deviceId].device;
  31. if (app.globalData.connectionStateChangeFunc[device.mac_id]) {
  32. Object.keys(app.globalData.connectionStateChangeFunc[device.mac_id]).forEach((p) => app.globalData.connectionStateChangeFunc[device.mac_id][p](res));
  33. }
  34. }
  35. });
  36. //监听低功耗蓝牙设备的特征值变化事件。必须先启用 notifyBLECharacteristicValueChange 接口才能接收到设备推送的 notification
  37. uni.onBLECharacteristicValueChange((res) => {
  38. console.log(res);
  39. if (app.globalData.connectionState[res.deviceId]) {
  40. const device = app.globalData.connectionState[res.deviceId].device;
  41. if (
  42. res.serviceId.toUpperCase() == bluetoothDevices[device.device_type].readServiceID.toUpperCase() &&
  43. res.characteristicId.toUpperCase() == bluetoothDevices[device.device_type].readID.toUpperCase()
  44. ) {
  45. var data = bluetoothDevices[device.device_type].readData(device, res.value, app.globalData.connectionState[res.deviceId].data);
  46. if (data) {
  47. app.globalData.connectionState[res.deviceId].data = data;
  48. if (app.globalData.characteristicStateChangeFunc[device.mac_id]) {
  49. Object.keys(app.globalData.characteristicStateChangeFunc[device.mac_id]).forEach((p) =>
  50. app.globalData.characteristicStateChangeFunc[device.mac_id][p](data)
  51. );
  52. }
  53. console.log(app.globalData.connectionState[res.deviceId].data);
  54. }
  55. }
  56. }
  57. });
  58. }
  59. function onAdapterStateChange(name, callback) {
  60. app.globalData.adapterStateChangeFunc[name] = callback;
  61. }
  62. function offAdapterStateChange(name) {
  63. delete app.globalData.adapterStateChangeFunc[name];
  64. }
  65. function onConnectionStateChange(macid, name, callback) {
  66. if (!app.globalData.connectionStateChangeFunc[macid]) {
  67. app.globalData.connectionStateChangeFunc[macid] = {};
  68. }
  69. app.globalData.connectionStateChangeFunc[macid][name] = callback;
  70. }
  71. function offConnectionStateChange(macid, name) {
  72. if (app.globalData.connectionStateChangeFunc[macid]) {
  73. delete app.globalData.connectionStateChangeFunc[macid][name];
  74. }
  75. }
  76. function onCharacteristicStateChange(macid, name, callback) {
  77. if (!app.globalData.characteristicStateChangeFunc[macid]) {
  78. app.globalData.characteristicStateChangeFunc[macid] = {};
  79. }
  80. app.globalData.characteristicStateChangeFunc[macid][name] = callback;
  81. }
  82. function offCharacteristicStateChange(macid, name) {
  83. if (app.globalData.characteristicStateChangeFunc[macid]) {
  84. delete app.globalData.characteristicStateChangeFunc[macid][name];
  85. }
  86. }
  87. function getAdapterState(callback = () => {}, fail = () => {}) {
  88. uni.getBluetoothAdapterState({
  89. success: (res) => {
  90. callback(res);
  91. },
  92. fail: (res) => {
  93. console.log(res);
  94. fail(res);
  95. }
  96. });
  97. }
  98. function openBluetoothAdapter(callback = () => {}, fail = () => {}) {
  99. uni.openBluetoothAdapter({
  100. success: (res) => {
  101. console.log(res);
  102. callback(res);
  103. },
  104. fail: (res) => {
  105. console.log(res);
  106. fail(res);
  107. }
  108. });
  109. }
  110. function closeBluetoothAdapter(callback = () => {}, fail = () => {}) {
  111. uni.closeBluetoothAdapter({
  112. success: (res) => {
  113. app.globalData.adapterStateChangeFunc = {};
  114. app.globalData.connectionStateChangeFunc = {};
  115. app.globalData.characteristicStateChangeFunc = {};
  116. app.globalData.connectionState = {};
  117. callback(res);
  118. },
  119. fail: (res) => {
  120. console.log(res);
  121. fail(res);
  122. }
  123. });
  124. }
  125. function acceptDevice(device) {
  126. return bluetoothDevices[device.device_type] && bluetoothDevices[device.device_type].acceptDevice(device) ? true : false;
  127. }
  128. function isSingleBT(device_type) {
  129. if (bluetoothDevices[device_type] && bluetoothDevices[device_type].isSingleBt) {
  130. return bluetoothDevices[device_type].isSingleBt();
  131. }
  132. return false;
  133. }
  134. function isSginleBtByMacid(macid) {
  135. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  136. console.log(app.globalData.connectionState);
  137. if (deviceId == undefined) {
  138. return false;
  139. }
  140. return isSingleBT(app.globalData.connectionState[deviceId].device.device_type);
  141. }
  142. function haveBMSForBT(device_type) {
  143. if (bluetoothDevices[device_type] && bluetoothDevices[device_type].haveBms) {
  144. return bluetoothDevices[device_type].haveBms();
  145. }
  146. return false;
  147. }
  148. function findDevice(device, callback = () => {}, fail = () => {}) {
  149. var deviceId = '';
  150. console.log('开始查找设备');
  151. if (!bluetoothDevices[device.device_type] || !bluetoothDevices[device.device_type].acceptDevice(device)) {
  152. return;
  153. }
  154. uni.startBluetoothDevicesDiscovery({
  155. success(res) {
  156. console.log(res);
  157. uni.getBluetoothDevices({
  158. success: (res) => {
  159. console.log(res);
  160. res.devices.forEach((data) => {
  161. console.log(data);
  162. if (bluetoothDevices[device.device_type].isDevice(device, data)) {
  163. console.log(device);
  164. uni.offBluetoothDeviceFound();
  165. uni.stopBluetoothDevicesDiscovery();
  166. deviceId = data.deviceId;
  167. if (app.globalData.connectionState[deviceId]) {
  168. app.globalData.connectionState[deviceId].device = device;
  169. } else {
  170. app.globalData.connectionState[deviceId] = {
  171. device: device,
  172. deviceId: deviceId,
  173. connected: false,
  174. data: {}
  175. };
  176. }
  177. callback(deviceId);
  178. }
  179. });
  180. setTimeout(function () {
  181. if (!deviceId) {
  182. uni.offBluetoothDeviceFound();
  183. uni.stopBluetoothDevicesDiscovery();
  184. fail();
  185. }
  186. }, 5000);
  187. },
  188. fail(res) {
  189. uni.stopBluetoothDevicesDiscovery();
  190. console.log(res);
  191. fail(res);
  192. }
  193. });
  194. uni.onBluetoothDeviceFound((res) => {
  195. console.log(res);
  196. res.devices.forEach((data) => {
  197. if (bluetoothDevices[device.device_type].isDevice(device, data)) {
  198. uni.offBluetoothDeviceFound();
  199. uni.stopBluetoothDevicesDiscovery();
  200. deviceId = data.deviceId;
  201. if (app.globalData.connectionState[deviceId]) {
  202. app.globalData.connectionState[deviceId].device = device;
  203. } else {
  204. app.globalData.connectionState[deviceId] = {
  205. device: device,
  206. deviceId: deviceId,
  207. connected: false,
  208. data: {}
  209. };
  210. }
  211. callback(deviceId);
  212. }
  213. });
  214. });
  215. },
  216. fail(res) {
  217. console.log(res);
  218. fail(res);
  219. }
  220. });
  221. }
  222. function connectDevice(device, callback = () => {}, fail = () => {}) {
  223. console.log('连接设备');
  224. console.log(device);
  225. if (!bluetoothDevices[device.device_type] || !bluetoothDevices[device.device_type].acceptDevice(device)) {
  226. return;
  227. }
  228. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == device.mac_id);
  229. if (deviceId == undefined) {
  230. findDevice(
  231. device,
  232. (deviceId) => {
  233. console.log('找到设备');
  234. connectDevice(device, callback, fail);
  235. },
  236. (res) => {
  237. console.log('连接失败');
  238. fail(res);
  239. }
  240. );
  241. return;
  242. } else {
  243. if (app.globalData.connectionState[deviceId].connected) {
  244. callback();
  245. return;
  246. }
  247. }
  248. uni.createBLEConnection({
  249. deviceId: deviceId,
  250. success: (res) => {
  251. console.log(res);
  252. app.globalData.connectionState[deviceId] = {
  253. device: device,
  254. deviceId: deviceId,
  255. connected: true,
  256. data: {}
  257. };
  258. alterConnect(
  259. device,
  260. deviceId,
  261. (res) => {
  262. console.log(res);
  263. callback(res);
  264. },
  265. (res) => {
  266. console.log(res);
  267. closeDevice(deviceId);
  268. fail(res);
  269. }
  270. );
  271. },
  272. fail(res) {
  273. console.log(res);
  274. if (res.errCode == -1) {
  275. closeDevice(
  276. deviceId,
  277. (res) => {
  278. connectDevice(device, callback, fail);
  279. },
  280. (res) => {
  281. fail(res);
  282. }
  283. );
  284. } else {
  285. fail(res);
  286. }
  287. }
  288. });
  289. }
  290. function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
  291. if (!bluetoothDevices[device.device_type] || !bluetoothDevices[device.device_type].acceptDevice(device)) {
  292. return;
  293. }
  294. uni.getBLEDeviceServices({
  295. deviceId: deviceId,
  296. success(res) {
  297. console.log(res);
  298. uni.getBLEDeviceCharacteristics({
  299. deviceId: deviceId,
  300. serviceId: bluetoothDevices[device.device_type].writeServiceID,
  301. success(res) {
  302. console.log(res);
  303. uni.getBLEDeviceCharacteristics({
  304. deviceId: deviceId,
  305. serviceId: bluetoothDevices[device.device_type].readServiceID,
  306. success(res) {
  307. console.log(res);
  308. uni.notifyBLECharacteristicValueChange({
  309. state: true,
  310. deviceId: deviceId,
  311. serviceId: bluetoothDevices[device.device_type].readServiceID,
  312. characteristicId: bluetoothDevices[device.device_type].readID,
  313. success(res) {
  314. console.log(res);
  315. if (bluetoothDevices[device.device_type].MTU && SystemInfoUtil.platform == SystemInfoUtil.ANDROID) {
  316. uni.setBLEMTU({
  317. deviceId: deviceId,
  318. mtu: bluetoothDevices[device.device_type].MTU,
  319. success: (res) => {
  320. console.log('setBLEMTU success>>', res);
  321. if (bluetoothDevices[device.device_type].alterConnect) {
  322. var data = bluetoothDevices[device.device_type].alterConnect(device, deviceId);
  323. if (data) {
  324. writeData(device, deviceId, data, callback, fail);
  325. } else {
  326. callback(res);
  327. }
  328. } else {
  329. callback(res);
  330. }
  331. },
  332. fail: (res) => {
  333. console.log('setBLEMTU fail>>', res);
  334. }
  335. });
  336. } else {
  337. if (bluetoothDevices[device.device_type].alterConnect) {
  338. var data = bluetoothDevices[device.device_type].alterConnect(device, deviceId);
  339. if (data) {
  340. writeData(device, deviceId, data, callback, fail);
  341. } else {
  342. callback(res);
  343. }
  344. } else {
  345. callback(res);
  346. }
  347. }
  348. },
  349. fail(res) {
  350. fail(res);
  351. }
  352. });
  353. },
  354. fail(res) {
  355. fail(res);
  356. }
  357. });
  358. },
  359. fail(res) {
  360. fail(res);
  361. }
  362. });
  363. },
  364. fail(res) {
  365. fail(res);
  366. }
  367. });
  368. }
  369. function closeDevice(macid, callback = () => {}, fail = () => {}) {
  370. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  371. if (deviceId == undefined) {
  372. fail();
  373. return;
  374. } else {
  375. if (!app.globalData.connectionState[deviceId].connected) {
  376. callback();
  377. return;
  378. }
  379. }
  380. const device = app.globalData.connectionState[deviceId].device;
  381. uni.closeBLEConnection({
  382. deviceId: deviceId,
  383. success: (res) => {
  384. console.log(res);
  385. if (app.globalData.connectionState[deviceId]) {
  386. app.globalData.connectionState[deviceId].connected = false;
  387. }
  388. callback(res);
  389. },
  390. fail(res) {
  391. console.log(res);
  392. fail(res);
  393. }
  394. });
  395. }
  396. function bmsInfo(macid) {
  397. console.log(macid);
  398. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  399. if (deviceId == undefined) {
  400. return false;
  401. }
  402. const device = app.globalData.connectionState[deviceId].device;
  403. if (!bluetoothDevices[device.device_type].bmsInfo) {
  404. return false;
  405. }
  406. return bluetoothDevices[device.device_type].bmsInfo(device, deviceId, app.globalData.connectionState[deviceId].data);
  407. }
  408. function bmsSet(macid, name, vars, callback = () => {}, fail = () => {}) {
  409. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  410. if (deviceId == undefined) {
  411. fail();
  412. return false;
  413. }
  414. const device = app.globalData.connectionState[deviceId].device;
  415. if (!bluetoothDevices[device.device_type].bmsSet) {
  416. fail();
  417. return false;
  418. }
  419. var data = bluetoothDevices[device.device_type].bmsSet(device, deviceId, name, vars);
  420. if (data) {
  421. writeData(device, deviceId, data, callback, fail);
  422. return true;
  423. }
  424. fail();
  425. return false;
  426. }
  427. function writeData(device, deviceId, data, callback = () => {}, fail = () => {}) {
  428. if (data.length == 0) {
  429. return;
  430. }
  431. console.log('写入数据');
  432. console.log(data);
  433. console.log(device);
  434. var buffer;
  435. console.log(device.device_type);
  436. if (device.device_type === BWJT || device.device_type === JTBMS) {
  437. buffer = new ArrayBuffer(data.length);
  438. var dataView = new DataView(buffer);
  439. data.forEach(function (item, index) {
  440. dataView.setUint8(index, item);
  441. });
  442. } else {
  443. buffer = common.toArrayBuffer(data.shift());
  444. }
  445. console.log('writeServiceID' + bluetoothDevices[device.device_type].writeServiceID);
  446. console.log('writeID' + bluetoothDevices[device.device_type].writeID);
  447. console.log(buffer);
  448. uni.writeBLECharacteristicValue({
  449. deviceId: deviceId,
  450. serviceId: bluetoothDevices[device.device_type].writeServiceID,
  451. characteristicId: bluetoothDevices[device.device_type].writeID,
  452. value: buffer,
  453. success(res) {
  454. console.log('写入数据成功');
  455. console.log(res);
  456. if (data.length == 0) {
  457. callback(res);
  458. } else {
  459. if (!(device.device_type === BWJT || device.device_type === JTBMS)) {
  460. console.log(device.device_type);
  461. setTimeout(() => {
  462. writeData(device, deviceId, data, callback, fail);
  463. }, 500);
  464. }
  465. }
  466. },
  467. fail(res) {
  468. console.log('写入数据失败');
  469. console.log(res);
  470. fail(res);
  471. }
  472. });
  473. }
  474. function stateUpdate(macid, callback = () => {}, fail = () => {}) {
  475. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  476. if (deviceId == undefined) {
  477. fail();
  478. return false;
  479. }
  480. const device = app.globalData.connectionState[deviceId].device;
  481. if (!bluetoothDevices[device.device_type].stateUpdate) {
  482. fail();
  483. return false;
  484. }
  485. console.log(deviceId);
  486. console.log(device);
  487. var data = bluetoothDevices[device.device_type].stateUpdate(device, deviceId);
  488. if (data) {
  489. console.log(data);
  490. writeData(device, deviceId, data, callback, fail);
  491. return true;
  492. }
  493. fail();
  494. return false;
  495. }
  496. function turnOn(macid, callback = () => {}, fail = () => {}) {
  497. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  498. if (deviceId == undefined) {
  499. fail();
  500. return false;
  501. }
  502. const device = app.globalData.connectionState[deviceId].device;
  503. if (!bluetoothDevices[device.device_type].turnOn) {
  504. fail();
  505. return false;
  506. }
  507. var data = bluetoothDevices[device.device_type].turnOn(device, deviceId);
  508. if (data) {
  509. writeData(device, deviceId, data, callback, fail);
  510. return true;
  511. }
  512. fail();
  513. return false;
  514. }
  515. function turnOff(macid, callback = () => {}, fail = () => {}) {
  516. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  517. if (deviceId == undefined) {
  518. fail();
  519. return false;
  520. }
  521. const device = app.globalData.connectionState[deviceId].device;
  522. if (!bluetoothDevices[device.device_type].turnOff) {
  523. fail();
  524. return false;
  525. }
  526. var data = bluetoothDevices[device.device_type].turnOff(device, deviceId);
  527. if (data) {
  528. writeData(device, deviceId, data, callback, fail);
  529. return true;
  530. }
  531. fail();
  532. return false;
  533. }
  534. function bmsChargingMOS(macid, value, callback = () => {}, fail = () => {}) {
  535. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  536. if (deviceId == undefined) {
  537. fail();
  538. return false;
  539. }
  540. const device = app.globalData.connectionState[deviceId].device;
  541. if (!bluetoothDevices[device.device_type].bmsChargingMOS) {
  542. fail();
  543. return false;
  544. }
  545. var data = bluetoothDevices[device.device_type].bmsChargingMOS(value - 0);
  546. if (data) {
  547. writeData(device, deviceId, data, callback, fail);
  548. return true;
  549. }
  550. fail();
  551. return false;
  552. }
  553. function bmsDischargeMOS(macid, value, callback = () => {}, fail = () => {}) {
  554. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  555. if (deviceId == undefined) {
  556. fail();
  557. return false;
  558. }
  559. const device = app.globalData.connectionState[deviceId].device;
  560. if (!bluetoothDevices[device.device_type].bmsDischargeMOS) {
  561. fail();
  562. return false;
  563. }
  564. var data = bluetoothDevices[device.device_type].bmsDischargeMOS(value - 0);
  565. if (data) {
  566. writeData(device, deviceId, data, callback, fail);
  567. return true;
  568. }
  569. fail();
  570. return false;
  571. }
  572. function isConnected(macid) {
  573. console.log('接收器');
  574. console.log(app.globalData.connectionState);
  575. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  576. console.log(app.globalData.connectionState);
  577. if (deviceId == undefined) {
  578. return false;
  579. }
  580. return app.globalData.connectionState[deviceId].connected;
  581. }
  582. function getData(macid) {
  583. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  584. if (deviceId == undefined) {
  585. return false;
  586. }
  587. return app.globalData.connectionState[deviceId].data;
  588. }
  589. function getConnectionState(macid) {
  590. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  591. if (deviceId == undefined) {
  592. return false;
  593. }
  594. return app.globalData.connectionState[deviceId];
  595. }
  596. module.exports = {
  597. initBluetooth: initBluetooth,
  598. onAdapterStateChange: onAdapterStateChange,
  599. offAdapterStateChange: offAdapterStateChange,
  600. onConnectionStateChange: onConnectionStateChange,
  601. offConnectionStateChange: offConnectionStateChange,
  602. onCharacteristicStateChange: onCharacteristicStateChange,
  603. offCharacteristicStateChange: offCharacteristicStateChange,
  604. getAdapterState: getAdapterState,
  605. openBluetoothAdapter: openBluetoothAdapter,
  606. closeBluetoothAdapter: closeBluetoothAdapter,
  607. acceptDevice: acceptDevice,
  608. findDevice: findDevice,
  609. connectDevice: connectDevice,
  610. closeDevice: closeDevice,
  611. stateUpdate: stateUpdate,
  612. turnOn: turnOn,
  613. turnOff: turnOff,
  614. bmsInfo: bmsInfo,
  615. bmsSet: bmsSet,
  616. isConnected: isConnected,
  617. getData: getData,
  618. isSingleBT: isSingleBT,
  619. haveBMSForBT: haveBMSForBT,
  620. isSginleBtByMacid: isSginleBtByMacid,
  621. getConnectionState: getConnectionState,
  622. bmsChargingMOS: bmsChargingMOS,
  623. bmsDischargeMOS: bmsDischargeMOS
  624. };