bluetooth 0806.js 27 KB

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