bluetooth123.js 32 KB

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