bluetooth.js 31 KB

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