bluetooth_zhengc.js 22 KB

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