bluetooth0306.js 32 KB

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