bluetooth.js 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037
  1. const common = require('./common.js');
  2. import SystemInfoUtil from './SystemInfoUtil.js';
  3. const app = getApp();
  4. const bluetoothDevices = {
  5. ZX16D: require('./bluetooth/ZX16D.js'),
  6. FMBMS: require('./bluetooth/FMBMS.js'),
  7. LFBMS: require('./bluetooth/LFBMS.js'),
  8. JYBMS: require('./bluetooth/LFBMS.js'),
  9. BLFM: require('./bluetooth/BLFM.js'),
  10. ZXBT: require('./bluetooth/ZXBT.js'),
  11. LSBMS: require('./bluetooth/LSBMS.js'),
  12. LSCabinet: require('./bluetooth/LSCabinet.js'),
  13. LSBTS: require('./bluetooth/LSBTS.js'),
  14. ZXBTS: require('./bluetooth/ZXBTS.js'),
  15. AD3BTS: require('./bluetooth/AD3BTS.js'),
  16. BWJT: require('./bluetooth/ZXBT_JL.js'),
  17. JTBMS: require('./bluetooth/ZXBT_JL.js')
  18. };
  19. //初始化蓝牙
  20. function initBluetooth() {
  21. //监听蓝牙适配器状态变化事件
  22. uni.onBluetoothAdapterStateChange((res) => {
  23. console.log(res);
  24. Object.keys(app.globalData.adapterStateChangeFunc).forEach((n) => app.globalData.adapterStateChangeFunc[
  25. n](res));
  26. });
  27. //监听低功耗蓝牙连接状态的改变事件。包括开发者主动连接或断开连接,设备丢失,连接异常断开等等
  28. uni.onBLEConnectionStateChange((res) => {
  29. console.log(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
  35. .globalData.connectionStateChangeFunc[device.mac_id][p](res));
  36. }
  37. }
  38. });
  39. //监听低功耗蓝牙设备的特征值变化事件。必须先启用 notifyBLECharacteristicValueChange 接口才能接收到设备推送的 notification
  40. uni.onBLECharacteristicValueChange((res) => {
  41. console.log(res + "监听到数据")
  42. if (app.globalData.connectionState[res.deviceId]) {
  43. const device = app.globalData.connectionState[res.deviceId].device;
  44. if (
  45. res.serviceId.toUpperCase() == bluetoothDeviceConfig(device).readServiceID.toUpperCase() &&
  46. res.characteristicId.toUpperCase() == bluetoothDeviceConfig(device).readID.toUpperCase()
  47. ) {
  48. var data = bluetoothDeviceConfig(device).readData(device, res.value, app.globalData
  49. .connectionState[res.deviceId].data);
  50. if (data) {
  51. app.globalData.connectionState[res.deviceId].data = data;
  52. if (app.globalData.characteristicStateChangeFunc[device.mac_id]) {
  53. Object.keys(app.globalData.characteristicStateChangeFunc[device.mac_id]).forEach((p) =>
  54. app.globalData.characteristicStateChangeFunc[device.mac_id][p](data)
  55. );
  56. }
  57. }
  58. }
  59. }
  60. });
  61. }
  62. function onAdapterStateChange(name, callback) {
  63. app.globalData.adapterStateChangeFunc[name] = callback;
  64. }
  65. function offAdapterStateChange(name) {
  66. delete app.globalData.adapterStateChangeFunc[name];
  67. }
  68. function onConnectionStateChange(macid, name, callback) {
  69. if (!app.globalData.connectionStateChangeFunc[macid]) {
  70. app.globalData.connectionStateChangeFunc[macid] = {};
  71. }
  72. app.globalData.connectionStateChangeFunc[macid][name] = callback;
  73. }
  74. function offConnectionStateChange(macid, name) {
  75. if (app.globalData.connectionStateChangeFunc[macid]) {
  76. delete app.globalData.connectionStateChangeFunc[macid][name];
  77. }
  78. }
  79. function onCharacteristicStateChange(macid, name, callback) {
  80. if (!app.globalData.characteristicStateChangeFunc[macid]) {
  81. app.globalData.characteristicStateChangeFunc[macid] = {};
  82. }
  83. app.globalData.characteristicStateChangeFunc[macid][name] = callback;
  84. }
  85. function offCharacteristicStateChange(macid, name) {
  86. if (app.globalData.characteristicStateChangeFunc[macid]) {
  87. delete app.globalData.characteristicStateChangeFunc[macid][name];
  88. }
  89. }
  90. function getAdapterState(callback = () => {}, fail = () => {}) {
  91. uni.getBluetoothAdapterState({
  92. success: (res) => {
  93. callback(res);
  94. },
  95. fail: (res) => {
  96. console.log(res);
  97. fail(res);
  98. }
  99. });
  100. }
  101. function openBluetoothAdapter(callback = () => {}, fail = () => {}) {
  102. uni.openBluetoothAdapter({
  103. success: (res) => {
  104. console.log(res);
  105. callback(res);
  106. },
  107. fail: (res) => {
  108. console.log(res);
  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
  130. .device_type].acceptDevice(device)) ? true : false;
  131. }
  132. function isSingleBT(device) {
  133. // if (bluetoothDevices[device_type] && bluetoothDevices[device_type].isSingleBt) {
  134. // return bluetoothDevices[device_type].isSingleBt()
  135. // }
  136. // return false
  137. if (bluetoothDeviceConfig(device) && bluetoothDeviceConfig(device).isSingleBt) {
  138. return bluetoothDeviceConfig(device).isSingleBt();
  139. }
  140. return false;
  141. }
  142. function isBuzzer(device) {
  143. if (bluetoothDeviceConfig(device) && bluetoothDeviceConfig(device).isBuzzer) {
  144. return bluetoothDeviceConfig(device).isBuzzer();
  145. }
  146. return false;
  147. }
  148. function isVoltageToEle(device) {
  149. if (bluetoothDeviceConfig(device) && bluetoothDeviceConfig(device).voltageToEle) {
  150. return true;
  151. }
  152. return false;
  153. }
  154. function isSginleBtByMacid(macid) {
  155. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  156. .mac_id == macid);
  157. console.log(app.globalData.connectionState);
  158. if (deviceId == undefined) {
  159. return false;
  160. }
  161. return isSingleBT(app.globalData.connectionState[deviceId].device);
  162. }
  163. function haveBMSForBT(device) {
  164. if (bluetoothDeviceConfig(device) && bluetoothDeviceConfig(device).haveBms) {
  165. return bluetoothDeviceConfig(device).haveBms();
  166. }
  167. return false;
  168. }
  169. function findDevice(device, callback = () => {}, fail = () => {}) {
  170. var deviceId = '';
  171. console.log('开始查找电池');
  172. if (!bluetoothDeviceConfig(device)) {
  173. return;
  174. }
  175. console.log('查找到为蓝牙设备');
  176. uni.startBluetoothDevicesDiscovery({
  177. success(res) {
  178. console.log(res);
  179. uni.getBluetoothDevices({
  180. success: (res) => {
  181. console.log(res);
  182. res.devices.forEach((data) => {
  183. console.log(data);
  184. if (bluetoothDeviceConfig(device).isDevice(device, data)) {
  185. //uni.offBluetoothDeviceFound();
  186. uni.stopBluetoothDevicesDiscovery();
  187. deviceId = data.deviceId;
  188. if (app.globalData.connectionState[deviceId]) {
  189. app.globalData.connectionState[deviceId].device = device;
  190. } else {
  191. app.globalData.connectionState[deviceId] = {
  192. device: device,
  193. deviceId: deviceId,
  194. connected: false,
  195. data: {}
  196. };
  197. }
  198. callback(deviceId);
  199. }
  200. });
  201. setTimeout(function() {
  202. if (!deviceId) {
  203. //uni.offBluetoothDeviceFound();
  204. uni.stopBluetoothDevicesDiscovery();
  205. fail();
  206. }
  207. }, 5000);
  208. },
  209. fail(res) {
  210. uni.stopBluetoothDevicesDiscovery();
  211. console.log(res);
  212. fail(res);
  213. }
  214. });
  215. uni.onBluetoothDeviceFound((res) => {
  216. console.log(res);
  217. res.devices.forEach((data) => {
  218. if (bluetoothDeviceConfig(device).isDevice(device, data)) {
  219. //uni.offBluetoothDeviceFound();
  220. uni.stopBluetoothDevicesDiscovery();
  221. deviceId = data.deviceId;
  222. if (app.globalData.connectionState[deviceId]) {
  223. app.globalData.connectionState[deviceId].device = device;
  224. } else {
  225. app.globalData.connectionState[deviceId] = {
  226. device: device,
  227. deviceId: deviceId,
  228. connected: false,
  229. data: {}
  230. };
  231. }
  232. callback(deviceId);
  233. }
  234. });
  235. });
  236. },
  237. fail(res) {
  238. console.log(res);
  239. fail(res);
  240. }
  241. });
  242. }
  243. function connectDevice(device, callback = () => {}, fail = () => {}) {
  244. console.log(device);
  245. console.log("连接设备中。。。");
  246. console.log(app.globalData.connectionState);
  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
  251. .mac_id == device.mac_id);
  252. if (deviceId == undefined) {
  253. findDevice(
  254. device,
  255. (deviceId) => {
  256. connectDevice(device, callback, fail);
  257. },
  258. (res) => {
  259. fail(res);
  260. }
  261. );
  262. return;
  263. } else {
  264. if (app.globalData.connectionState[deviceId].connected) {
  265. callback();
  266. return;
  267. }
  268. }
  269. uni.createBLEConnection({
  270. deviceId: deviceId,
  271. success: (res) => {
  272. app.globalData.connectionState[deviceId] = {
  273. device: device,
  274. deviceId: deviceId,
  275. connected: true,
  276. data: {}
  277. };
  278. alterConnect(
  279. device,
  280. deviceId,
  281. (res) => {
  282. console.log(res);
  283. callback(res);
  284. },
  285. (res) => {
  286. console.log(res);
  287. closeDevice(deviceId);
  288. fail(res);
  289. }
  290. );
  291. },
  292. fail(res) {
  293. console.log(res);
  294. if (res.errCode == -1) {
  295. closeDevice(
  296. deviceId,
  297. (res) => {
  298. connectDevice(device, callback, fail);
  299. },
  300. (res) => {
  301. fail(res);
  302. }
  303. );
  304. } else {
  305. fail(res);
  306. }
  307. }
  308. });
  309. }
  310. function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
  311. console.log("校检连接2");
  312. if (!bluetoothDeviceConfig(device) || !bluetoothDeviceConfig(device).acceptDevice(device)) {
  313. return;
  314. }
  315. console.log("校检连接1");
  316. setTimeout(() => {
  317. uni.getBLEDeviceServices({
  318. deviceId: deviceId,
  319. success(res) {
  320. console.log("校检连接3");
  321. console.log(res);
  322. console.log(deviceId + "deviceId");
  323. console.log(bluetoothDeviceConfig(device).writeServiceID + "deviceId");
  324. uni.getBLEDeviceCharacteristics({
  325. deviceId: deviceId,
  326. serviceId: bluetoothDeviceConfig(device).writeServiceID,
  327. success(res) {
  328. console.log("校检连接");
  329. console.log(res);
  330. uni.getBLEDeviceCharacteristics({
  331. deviceId: deviceId,
  332. serviceId: bluetoothDeviceConfig(device).readServiceID,
  333. success(res) {
  334. console.log(res);
  335. uni.notifyBLECharacteristicValueChange({
  336. state: true,
  337. deviceId: deviceId,
  338. serviceId: bluetoothDeviceConfig(device)
  339. .readServiceID,
  340. characteristicId: bluetoothDeviceConfig(
  341. device).readID,
  342. success(res) {
  343. console.log(res);
  344. if (bluetoothDeviceConfig(device).MTU) {
  345. uni.setBLEMTU({
  346. deviceId: deviceId,
  347. mtu: bluetoothDeviceConfig(
  348. device).MTU,
  349. success: (res) => {
  350. console.log(
  351. 'setBLEMTU success>>',
  352. res);
  353. if (bluetoothDeviceConfig(
  354. device)
  355. .alterConnect
  356. ) {
  357. var data =
  358. bluetoothDeviceConfig(
  359. device
  360. )
  361. .alterConnect(
  362. device,
  363. deviceId
  364. );
  365. if (data) {
  366. console
  367. .log(
  368. '来写了'
  369. );
  370. writeData
  371. (device,
  372. deviceId,
  373. data,
  374. callback,
  375. fail
  376. );
  377. } else {
  378. callback
  379. (
  380. res);
  381. }
  382. } else {
  383. callback(
  384. res);
  385. }
  386. },
  387. fail: (res) => {
  388. console.log(
  389. 'setBLEMTU fail>>',
  390. res);
  391. var data =
  392. bluetoothDeviceConfig(
  393. device)
  394. .alterConnect(
  395. device,
  396. deviceId
  397. );
  398. if (data) {
  399. writeData(
  400. device,
  401. deviceId,
  402. data,
  403. callback,
  404. fail
  405. );
  406. } else {
  407. callback(
  408. res);
  409. }
  410. }
  411. });
  412. } else {
  413. if (bluetoothDeviceConfig(device)
  414. .alterConnect) {
  415. var data =
  416. bluetoothDeviceConfig(
  417. device).alterConnect(
  418. device, deviceId);
  419. if (data) {
  420. console.log('来写了99');
  421. writeData(device, deviceId,
  422. data, callback, fail
  423. );
  424. } else {
  425. callback(res);
  426. }
  427. } else {
  428. callback(res);
  429. }
  430. }
  431. },
  432. fail(res) {
  433. fail(res);
  434. }
  435. });
  436. },
  437. fail(res) {
  438. fail(res);
  439. }
  440. });
  441. },
  442. fail(res) {
  443. fail(res);
  444. }
  445. });
  446. },
  447. fail(res) {
  448. fail(res);
  449. }
  450. });
  451. }, 2000);
  452. }
  453. function closeDevice(macid, callback = () => {}, fail = () => {}) {
  454. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  455. .mac_id == macid);
  456. if (deviceId == undefined) {
  457. fail();
  458. return;
  459. } else {
  460. if (!app.globalData.connectionState[deviceId].connected) {
  461. callback();
  462. return;
  463. }
  464. }
  465. const device = app.globalData.connectionState[deviceId].device;
  466. uni.closeBLEConnection({
  467. deviceId: deviceId,
  468. success: (res) => {
  469. console.log(res);
  470. if (app.globalData.connectionState[deviceId]) {
  471. app.globalData.connectionState[deviceId].connected = false;
  472. }
  473. callback(res);
  474. },
  475. fail(res) {
  476. console.log(res);
  477. fail(res);
  478. }
  479. });
  480. }
  481. function bmsInfo(macid) {
  482. console.log(macid);
  483. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  484. .mac_id == macid);
  485. if (deviceId == undefined) {
  486. return false;
  487. }
  488. const device = app.globalData.connectionState[deviceId].device;
  489. if (!bluetoothDeviceConfig(device).bmsInfo) {
  490. return false;
  491. }
  492. return bluetoothDeviceConfig(device).bmsInfo(device, deviceId, app.globalData.connectionState[deviceId].data);
  493. }
  494. function bmsSet(deviceInfo, callback = () => {}, fail = () => {}) {
  495. console.log(deviceInfo.mac_id);
  496. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  497. .mac_id == deviceInfo.mac_id);
  498. if (deviceId == undefined) {
  499. fail();
  500. return false;
  501. }
  502. const device = app.globalData.connectionState[deviceId].device;
  503. console.log('3333');
  504. if (!bluetoothDeviceConfig(device).bmsSet) {
  505. console.log('4444');
  506. fail();
  507. return false;
  508. }
  509. var data = bluetoothDeviceConfig(device).bmsSet(deviceInfo);
  510. console.log('555');
  511. if (data) {
  512. console.log('6666');
  513. writeData(device, deviceId, data, callback, fail);
  514. return true;
  515. }
  516. console.log('777');
  517. fail();
  518. return false;
  519. }
  520. // function bmsSet(macid, name, vars, callback = () => { }, fail = () => { }) {
  521. // const deviceId = Object.keys(app.globalData.connectionState).find(i => app.globalData.connectionState[i].device.mac_id == macid)
  522. // if (deviceId == undefined) {
  523. // fail()
  524. // return false
  525. // }
  526. // const device = app.globalData.connectionState[deviceId].device
  527. // if (!bluetoothDevices[device.device_type].bmsSet) {
  528. // fail()
  529. // return false
  530. // }
  531. // var data = bluetoothDevices[device.device_type].bmsSet(device, deviceId, name, vars)
  532. // if (data) {
  533. // writeData(device, deviceId, data, callback, fail)
  534. // return true
  535. // }
  536. // fail()
  537. // return false
  538. // }
  539. function writeData(device, deviceId, data, callback = () => {}, fail = () => {}) {
  540. if (data.length == 0) {
  541. return;
  542. }
  543. var buffer;
  544. console.log(data + "data");
  545. buffer = common.toArrayBuffer(data.shift());
  546. console.log(buffer);
  547. console.log(deviceId)
  548. console.log(bluetoothDeviceConfig(device).writeServiceID)
  549. console.log(bluetoothDeviceConfig(device).writeID)
  550. uni.writeBLECharacteristicValue({
  551. deviceId: deviceId,
  552. serviceId: bluetoothDeviceConfig(device).writeServiceID,
  553. characteristicId: bluetoothDeviceConfig(device).writeID,
  554. value: buffer,
  555. success(res) {
  556. console.log(res);
  557. console.log(data.length);
  558. if (data.length == 0) {
  559. callback(res);
  560. } else {
  561. setTimeout(() => {
  562. console.log('来写了91');
  563. writeData(device, deviceId, data, callback, fail);
  564. }, 500);
  565. }
  566. },
  567. fail(res) {
  568. console.log(res);
  569. fail(res);
  570. }
  571. });
  572. }
  573. function stateUpdate(macid, callback = () => {}, fail = () => {}) {
  574. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  575. .mac_id == macid);
  576. if (deviceId == undefined) {
  577. fail();
  578. return false;
  579. }
  580. const device = app.globalData.connectionState[deviceId].device;
  581. if (!bluetoothDeviceConfig(device).stateUpdate) {
  582. fail();
  583. return false;
  584. }
  585. var data = bluetoothDeviceConfig(device).stateUpdate(device, deviceId);
  586. console.log("电池" + data)
  587. if (data) {
  588. writeData(device, deviceId, data, callback, fail);
  589. return true;
  590. }
  591. fail();
  592. return false;
  593. }
  594. function voltageToEle(macid, value, callback = () => {}, fail = () => {}) {
  595. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  596. .mac_id == macid);
  597. if (deviceId == undefined) {
  598. fail();
  599. return false;
  600. }
  601. const device = app.globalData.connectionState[deviceId].device;
  602. if (!bluetoothDeviceConfig(device).voltageToEle) {
  603. fail();
  604. return false;
  605. }
  606. var data = bluetoothDeviceConfig(device).voltageToEle(device, value);
  607. if (data) {
  608. console.log('来写配置文件');
  609. writeData(device, deviceId, data, callback, fail);
  610. return true;
  611. }
  612. fail();
  613. return false;
  614. }
  615. function turnOn(macid, callback = () => {}, fail = () => {}) {
  616. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  617. .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).turnOn) {
  624. fail();
  625. return false;
  626. }
  627. var data = bluetoothDeviceConfig(device).turnOn(device, deviceId);
  628. if (data) {
  629. console.log('来写了');
  630. writeData(device, deviceId, data, callback, fail);
  631. return true;
  632. }
  633. fail();
  634. return false;
  635. }
  636. function turnOnBuzzer(macid, callback = () => {}, fail = () => {}) {
  637. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  638. .mac_id == macid);
  639. if (deviceId == undefined) {
  640. fail();
  641. return false;
  642. }
  643. const device = app.globalData.connectionState[deviceId].device;
  644. if (!bluetoothDeviceConfig(device).turnOnBuzzer) {
  645. console.log('找不到turnOnBuzzer');
  646. fail();
  647. return false;
  648. }
  649. var data = bluetoothDeviceConfig(device).turnOnBuzzer(device, deviceId);
  650. if (data) {
  651. console.log('来写了');
  652. writeData(device, deviceId, data, callback, fail);
  653. return true;
  654. }
  655. fail();
  656. return false;
  657. }
  658. function turnOffBuzzer(macid, callback = () => {}, fail = () => {}) {
  659. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  660. .mac_id == macid);
  661. if (deviceId == undefined) {
  662. fail();
  663. return false;
  664. }
  665. const device = app.globalData.connectionState[deviceId].device;
  666. if (!bluetoothDeviceConfig(device).turnOffBuzzer) {
  667. fail();
  668. return false;
  669. }
  670. var data = bluetoothDeviceConfig(device).turnOffBuzzer(device, deviceId);
  671. if (data) {
  672. writeData(device, deviceId, data, callback, fail);
  673. return true;
  674. }
  675. fail();
  676. return false;
  677. }
  678. function turnOff(macid, callback = () => {}, fail = () => {}) {
  679. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  680. .mac_id == macid);
  681. console.log(deviceId);
  682. if (deviceId == undefined) {
  683. fail();
  684. return false;
  685. }
  686. const device = app.globalData.connectionState[deviceId].device;
  687. if (!bluetoothDeviceConfig(device).turnOff) {
  688. console.log(deviceId + '失败2');
  689. fail();
  690. return false;
  691. }
  692. var data = bluetoothDeviceConfig(device).turnOff(device, deviceId);
  693. if (data) {
  694. writeData(device, deviceId, data, callback, fail);
  695. return true;
  696. }
  697. console.log(data + '失败3');
  698. fail();
  699. return false;
  700. }
  701. function bmsChargingMOS(macid, value, callback = () => {}, fail = () => {}) {
  702. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  703. .mac_id == macid);
  704. if (deviceId == undefined) {
  705. fail();
  706. return false;
  707. }
  708. const device = app.globalData.connectionState[deviceId].device;
  709. if (!bluetoothDeviceConfig(device).bmsChargingMOS) {
  710. fail();
  711. return false;
  712. }
  713. var data = bluetoothDeviceConfig(device).bmsChargingMOS(value - 0, device);
  714. if (data) {
  715. writeData(device, deviceId, data, callback, fail);
  716. return true;
  717. }
  718. fail();
  719. return false;
  720. }
  721. function bmsDischargeMOS(macid, value, callback = () => {}, fail = () => {}) {
  722. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  723. .mac_id == macid);
  724. if (deviceId == undefined) {
  725. fail();
  726. return false;
  727. }
  728. const device = app.globalData.connectionState[deviceId].device;
  729. if (!bluetoothDeviceConfig(device).bmsDischargeMOS) {
  730. fail();
  731. return false;
  732. }
  733. var data = bluetoothDeviceConfig(device).bmsDischargeMOS(value - 0, device);
  734. if (data) {
  735. writeData(device, deviceId, data, callback, fail);
  736. return true;
  737. }
  738. fail();
  739. return false;
  740. }
  741. //查询波特率
  742. function queryBaud(macid, callback = () => {}, fail = () => {}) {
  743. console.log(macid);
  744. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  745. .mac_id == macid);
  746. if (deviceId == undefined) {
  747. fail();
  748. return false;
  749. }
  750. const device = app.globalData.connectionState[deviceId].device;
  751. if (!bluetoothDeviceConfig(device).queryBaud) {
  752. fail();
  753. return false;
  754. }
  755. var data = bluetoothDeviceConfig(device).queryBaud(device, deviceId);
  756. if (data) {
  757. writeData(device, deviceId, data, callback, fail);
  758. return true;
  759. }
  760. fail();
  761. return false;
  762. }
  763. //设置波特率
  764. function setBaud(macid, value, callback = () => {}, fail = () => {}) {
  765. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  766. .mac_id == macid);
  767. if (deviceId == undefined) {
  768. fail();
  769. return false;
  770. }
  771. const device = app.globalData.connectionState[deviceId].device;
  772. if (!bluetoothDeviceConfig(device).setBaud) {
  773. fail();
  774. return false;
  775. }
  776. var data = bluetoothDeviceConfig(device).setBaud(value - 0, device);
  777. if (data) {
  778. writeData(device, deviceId, data, callback, fail);
  779. return true;
  780. }
  781. fail();
  782. return false;
  783. }
  784. function isConnected(macid) {
  785. console.log(app.globalData.connectionState);
  786. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  787. .mac_id == macid);
  788. console.log(app.globalData.connectionState);
  789. if (deviceId == undefined) {
  790. return false;
  791. }
  792. return app.globalData.connectionState[deviceId].connected;
  793. }
  794. function getData(macid) {
  795. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  796. .mac_id == macid);
  797. if (deviceId == undefined) {
  798. return false;
  799. }
  800. return app.globalData.connectionState[deviceId].data;
  801. }
  802. function getConnectionState(macid) {
  803. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  804. .mac_id == macid);
  805. if (deviceId == undefined) {
  806. return false;
  807. }
  808. return app.globalData.connectionState[deviceId];
  809. }
  810. function bluetoothDeviceConfig(device) {
  811. if (bluetoothDevices[device.bt_type]) {
  812. return bluetoothDevices[device.bt_type];
  813. } else if (bluetoothDevices[device.device_type]) {
  814. return bluetoothDevices[device.device_type];
  815. } else {
  816. return false;
  817. }
  818. }
  819. function isUniversalBluetoothPlugin(device) {
  820. if (bluetoothDevices[device.bt_type]) {
  821. return bluetoothDevices[device.bt_type];
  822. } else {
  823. return false;
  824. }
  825. }
  826. function sendHireCommand(macid, info, callback = () => {}, fail = () => {}) {
  827. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  828. .mac_id == macid);
  829. if (deviceId == undefined) {
  830. fail();
  831. return false;
  832. }
  833. const device = app.globalData.connectionState[deviceId].device;
  834. if (!bluetoothDevices[device.device_type].sendHireCommand) {
  835. fail();
  836. return false;
  837. }
  838. var data = bluetoothDevices[device.device_type].sendHireCommand(info);
  839. if (data) {
  840. writeData(device, deviceId, data, callback, fail);
  841. return true;
  842. }
  843. fail();
  844. return false;
  845. }
  846. function sendBackCommand(macid, info, callback = () => {}, fail = () => {}) {
  847. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  848. .mac_id == macid);
  849. if (deviceId == undefined) {
  850. fail();
  851. return false;
  852. }
  853. const device = app.globalData.connectionState[deviceId].device;
  854. if (!bluetoothDevices[device.device_type].sendBackCommand) {
  855. fail();
  856. return false;
  857. }
  858. var data = bluetoothDevices[device.device_type].sendBackCommand(info);
  859. if (data) {
  860. writeData(device, deviceId, data, callback, fail);
  861. return true;
  862. }
  863. fail();
  864. return false;
  865. }
  866. function sendExchangeCommand(macid, info, callback = () => {}, fail = () => {}) {
  867. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  868. .mac_id == macid);
  869. if (deviceId == undefined) {
  870. fail();
  871. return false;
  872. }
  873. const device = app.globalData.connectionState[deviceId].device;
  874. if (!bluetoothDevices[device.device_type].sendExchangeCommand) {
  875. fail();
  876. return false;
  877. }
  878. var data = bluetoothDevices[device.device_type].sendExchangeCommand(info);
  879. if (data) {
  880. writeData(device, deviceId, data, callback, fail);
  881. return true;
  882. }
  883. fail();
  884. return false;
  885. }
  886. function sendGetCabinetInfoCommand(macid, info, callback = () => {}, fail = () => {}) {
  887. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  888. .mac_id == macid);
  889. if (deviceId == undefined) {
  890. fail();
  891. return false;
  892. }
  893. const device = app.globalData.connectionState[deviceId].device;
  894. if (!bluetoothDevices[device.device_type].sendGetCabinetInfoCommand) {
  895. fail();
  896. return false;
  897. }
  898. var data = bluetoothDevices[device.device_type].sendGetCabinetInfoCommand(info);
  899. if (data) {
  900. writeData(device, deviceId, data, callback, fail);
  901. return true;
  902. }
  903. fail();
  904. return false;
  905. }
  906. function sendConfirmCommand(macid, value, serialNum, callback = () => {}, fail = () => {}) {
  907. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  908. .mac_id == macid);
  909. if (deviceId == undefined) {
  910. fail();
  911. return false;
  912. }
  913. const device = app.globalData.connectionState[deviceId].device;
  914. if (!bluetoothDevices[device.device_type].sendConfirmCommand) {
  915. fail();
  916. return false;
  917. }
  918. var data = bluetoothDevices[device.device_type].sendConfirmCommand(value, serialNum);
  919. if (data) {
  920. writeData(device, deviceId, data, callback, fail);
  921. return true;
  922. }
  923. fail();
  924. return false;
  925. }
  926. function sendCancelCommand(macid, serialNum, callback = () => {}, fail = () => {}) {
  927. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device
  928. .mac_id == macid);
  929. if (deviceId == undefined) {
  930. fail();
  931. return false;
  932. }
  933. const device = app.globalData.connectionState[deviceId].device;
  934. if (!bluetoothDevices[device.device_type].sendCancelCommand) {
  935. fail();
  936. return false;
  937. }
  938. var data = bluetoothDevices[device.device_type].sendCancelCommand(serialNum);
  939. if (data) {
  940. writeData(device, deviceId, data, callback, fail);
  941. return true;
  942. }
  943. fail();
  944. return false;
  945. }
  946. module.exports = {
  947. initBluetooth: initBluetooth,
  948. onAdapterStateChange: onAdapterStateChange,
  949. offAdapterStateChange: offAdapterStateChange,
  950. onConnectionStateChange: onConnectionStateChange,
  951. offConnectionStateChange: offConnectionStateChange,
  952. onCharacteristicStateChange: onCharacteristicStateChange,
  953. offCharacteristicStateChange: offCharacteristicStateChange,
  954. getAdapterState: getAdapterState,
  955. openBluetoothAdapter: openBluetoothAdapter,
  956. closeBluetoothAdapter: closeBluetoothAdapter,
  957. acceptDevice: acceptDevice,
  958. findDevice: findDevice,
  959. connectDevice: connectDevice,
  960. closeDevice: closeDevice,
  961. stateUpdate: stateUpdate,
  962. turnOn: turnOn,
  963. turnOff: turnOff,
  964. turnOnBuzzer: turnOnBuzzer,
  965. turnOffBuzzer: turnOffBuzzer,
  966. bmsInfo: bmsInfo,
  967. bmsSet: bmsSet,
  968. isConnected: isConnected,
  969. getData: getData,
  970. isSingleBT: isSingleBT,
  971. isBuzzer: isBuzzer,
  972. haveBMSForBT: haveBMSForBT,
  973. isSginleBtByMacid: isSginleBtByMacid,
  974. getConnectionState: getConnectionState,
  975. bmsChargingMOS: bmsChargingMOS,
  976. bmsDischargeMOS: bmsDischargeMOS,
  977. bluetoothDeviceConfig: bluetoothDeviceConfig,
  978. voltageToEle: voltageToEle,
  979. isVoltageToEle: isVoltageToEle,
  980. setBaud: setBaud,
  981. queryBaud: queryBaud,
  982. isUniversalBluetoothPlugin: isUniversalBluetoothPlugin,
  983. //机柜协议增加
  984. sendHireCommand: sendHireCommand,
  985. sendBackCommand: sendBackCommand,
  986. sendExchangeCommand: sendExchangeCommand,
  987. sendGetCabinetInfoCommand: sendGetCabinetInfoCommand,
  988. sendConfirmCommand: sendConfirmCommand,
  989. sendCancelCommand: sendCancelCommand
  990. };