bluetooth.js 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003
  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. // 监听蓝牙适配器状态变化事件
  62. function onAdapterStateChange(name, callback) {
  63. app.globalData.adapterStateChangeFunc[name] = callback;
  64. }
  65. // 移除蓝牙适配器状态变化事件的监听
  66. function offAdapterStateChange(name) {
  67. delete app.globalData.adapterStateChangeFunc[name];
  68. }
  69. // 监听蓝牙设备连接状态变化事件
  70. function onConnectionStateChange(macid, name, callback) {
  71. if (!app.globalData.connectionStateChangeFunc[macid]) {
  72. app.globalData.connectionStateChangeFunc[macid] = {};
  73. }
  74. app.globalData.connectionStateChangeFunc[macid][name] = callback;
  75. }
  76. // 移除蓝牙设备连接状态变化事件的监听
  77. function offConnectionStateChange(macid, name) {
  78. if (app.globalData.connectionStateChangeFunc[macid]) {
  79. delete app.globalData.connectionStateChangeFunc[macid][name];
  80. }
  81. }
  82. // 监听蓝牙特征值状态变化事件
  83. function onCharacteristicStateChange(macid, name, callback) {
  84. if (!app.globalData.characteristicStateChangeFunc[macid]) {
  85. app.globalData.characteristicStateChangeFunc[macid] = {};
  86. }
  87. app.globalData.characteristicStateChangeFunc[macid][name] = callback;
  88. }
  89. // 移除蓝牙特征值状态变化事件的监听
  90. function offCharacteristicStateChange(macid, name) {
  91. if (app.globalData.characteristicStateChangeFunc[macid]) {
  92. delete app.globalData.characteristicStateChangeFunc[macid][name];
  93. }
  94. }
  95. // 获取蓝牙适配器的状态
  96. function getAdapterState(callback = () => {}, fail = () => {}) {
  97. uni.getBluetoothAdapterState({
  98. success: (res) => {
  99. callback(res);
  100. },
  101. fail: (res) => {
  102. console.log(res);
  103. fail(res);
  104. }
  105. });
  106. }
  107. // 打开蓝牙适配器
  108. function openBluetoothAdapter(callback = () => {}, fail = () => {}) {
  109. uni.openBluetoothAdapter({
  110. success: (res) => {
  111. console.log('初始化蓝牙模块成功');
  112. callback(res);
  113. },
  114. fail: (res) => {
  115. console.log(res);
  116. //permisson.permission_request(blePermissionName, blePermissionZhName);
  117. fail(res);
  118. }
  119. });
  120. }
  121. // 关闭蓝牙适配器
  122. function closeBluetoothAdapter(callback = () => {}, fail = () => {}) {
  123. uni.closeBluetoothAdapter({
  124. success: (res) => {
  125. app.globalData.adapterStateChangeFunc = {};
  126. app.globalData.connectionStateChangeFunc = {};
  127. app.globalData.characteristicStateChangeFunc = {};
  128. app.globalData.connectionState = {};
  129. callback(res);
  130. },
  131. fail: (res) => {
  132. console.log(res);
  133. fail(res);
  134. }
  135. });
  136. }
  137. // 函数acceptDevice用于接受设备
  138. // 参数device为设备对象
  139. function acceptDevice(device) {
  140. // 如果设备类型在bluetoothDevices中存在,则返回true,否则返回false
  141. return bluetoothDevices[device.bt_type] || (bluetoothDevices[device.device_type] && bluetoothDevices[device.device_type].acceptDevice(device)) ? true : false;
  142. }
  143. // 判断设备是否为单蓝牙设备
  144. function isSingleBT(device) {
  145. // if (bluetoothDevices[device_type] && bluetoothDevices[device_type].isSingleBt) {
  146. // return bluetoothDevices[device_type].isSingleBt()
  147. // }
  148. // return false
  149. // 判断设备配置是否存在且包含isSingleBt属性
  150. if (bluetoothDeviceConfig(device) && bluetoothDeviceConfig(device).isSingleBt) {
  151. // 返回设备配置中的isSingleBt属性值
  152. return bluetoothDeviceConfig(device).isSingleBt();
  153. }
  154. // 如果设备配置不存在或没有isSingleBt属性,则返回false
  155. return false;
  156. }
  157. // 判断设备是否为蜂鸣器
  158. function isBuzzer(device) {
  159. // 如果设备是蓝牙设备且设备配置中包含isBuzzer属性
  160. if (bluetoothDeviceConfig(device) && bluetoothDeviceConfig(device).isBuzzer) {
  161. // 返回设备配置中的isBuzzer属性值
  162. return bluetoothDeviceConfig(device).isBuzzer();
  163. }
  164. // 否则返回false
  165. return false;
  166. }
  167. // 判断设备是否为电压到电设备
  168. function isVoltageToEle(device) {
  169. // 如果设备配置中存在电压到电配置,则返回true
  170. if (bluetoothDeviceConfig(device) && bluetoothDeviceConfig(device).voltageToEle) {
  171. return true;
  172. }
  173. // 否则返回false
  174. return false;
  175. }
  176. // 根据macid判断是否是单蓝牙设备
  177. function isSginleBtByMacid(macid) {
  178. // 根据macid查找设备id
  179. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  180. // 打印全局连接状态
  181. console.log(app.globalData.connectionState);
  182. // 如果设备id为undefined,则返回false
  183. if (deviceId == undefined) {
  184. return false;
  185. }
  186. // 根据设备id判断是否是单蓝牙设备
  187. return isSingleBT(app.globalData.connectionState[deviceId].device);
  188. }
  189. function haveBMSForBT(device) {
  190. if (bluetoothDeviceConfig(device) && bluetoothDeviceConfig(device).haveBms) {
  191. return bluetoothDeviceConfig(device).haveBms();
  192. }
  193. return false;
  194. }
  195. // 定义一个函数,用于查找蓝牙设备
  196. function findDevice(device, callback = () => {}, fail = () => {}) {
  197. console.log('走到了findDevice fun');
  198. // 定义一个变量,用于存储设备ID
  199. var deviceId = '';
  200. // 判断设备是否为蓝牙设备
  201. if (!bluetoothDeviceConfig(device)) {
  202. // 如果不是蓝牙设备,则返回
  203. return;
  204. }
  205. // 打印查找到为蓝牙设备
  206. console.log('查找到为蓝牙设备');
  207. // 开始搜索蓝牙设备
  208. uni.startBluetoothDevicesDiscovery({
  209. // 搜索成功
  210. success(res) {
  211. console.log(res);
  212. // 获取搜索到的蓝牙设备
  213. uni.getBluetoothDevices({
  214. success: (res) => {
  215. console.log(res);
  216. // 遍历搜索到的蓝牙设备
  217. res.devices.forEach((data) => {
  218. console.log(data);
  219. // 判断设备是否为指定设备
  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. setTimeout(function () {
  238. if (!deviceId) {
  239. // uni.offBluetoothDeviceFound();
  240. uni.stopBluetoothDevicesDiscovery();
  241. var res = {
  242. errCode: 9000001,
  243. errMsg: 'openBluetoothAdapter:find not device',
  244. errno: 9000002
  245. };
  246. fail(res);
  247. }
  248. }, 5000);
  249. },
  250. fail(res) {
  251. uni.stopBluetoothDevicesDiscovery();
  252. console.log(res);
  253. fail(res);
  254. }
  255. });
  256. // 监听蓝牙设备发现事件
  257. uni.onBluetoothDeviceFound((res) => {
  258. // console.log(res);
  259. // 遍历搜索到的蓝牙设备列表
  260. res.devices.forEach((data) => {
  261. // 检查当前设备是否为目标设备
  262. if (bluetoothDeviceConfig(device).isDevice(device, data)) {
  263. // uni.offBluetoothDeviceFound();
  264. // 停止蓝牙设备搜索
  265. uni.stopBluetoothDevicesDiscovery();
  266. deviceId = data.deviceId;
  267. // 检查全局状态中是否已经存在该设备
  268. if (app.globalData.connectionState[deviceId]) {
  269. app.globalData.connectionState[deviceId].device = device;
  270. } else {
  271. // 如果不存在,创建新的设备状态对象
  272. app.globalData.connectionState[deviceId] = {
  273. device: device,
  274. deviceId: deviceId,
  275. connected: false,
  276. data: {}
  277. };
  278. }
  279. callback(deviceId);
  280. }
  281. });
  282. });
  283. },
  284. fail(res) {
  285. console.log(res);
  286. fail(res);
  287. }
  288. });
  289. }
  290. // 连接设备函数
  291. function connectDevice(device, callback = () => {}, fail = () => {}) {
  292. // 打印设备信息
  293. console.log(device);
  294. // 判断设备是否符合蓝牙设备配置
  295. if (!bluetoothDeviceConfig(device) || !bluetoothDeviceConfig(device).acceptDevice(device)) {
  296. return;
  297. }
  298. // 获取设备ID
  299. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == device.mac_id);
  300. console.log(deviceId,'连接函数connectDevice deviceId');
  301. // 判断设备是否已经连接
  302. if (deviceId == undefined) {
  303. // 如果设备未连接,则查找设备
  304. findDevice(
  305. device,
  306. (deviceId) => {
  307. // 递归调用连接设备函数
  308. connectDevice(device, callback, fail);
  309. },
  310. (res) => {
  311. // 失败回调
  312. fail(res);
  313. }
  314. );
  315. return;
  316. } else {
  317. // 如果设备已经连接,则直接回调
  318. if (app.globalData.connectionState[deviceId].connected) {
  319. callback();
  320. return;
  321. }
  322. }
  323. // 创建蓝牙连接
  324. uni.createBLEConnection({
  325. deviceId: deviceId,
  326. success: (res) => {
  327. console.log('蓝牙连接成功');
  328. // 更新连接状态
  329. app.globalData.connectionState[deviceId] = {
  330. device: device,
  331. deviceId: deviceId,
  332. connected: true,
  333. data: {}
  334. };
  335. // 调用连接成功回调
  336. alterConnect(
  337. device,
  338. deviceId,
  339. (res) => {
  340. console.log('uni.createBLEConnection');
  341. callback(res);
  342. },
  343. (res) => {
  344. console.log(' uni.createBLEConnection');
  345. // 关闭设备连接
  346. closeDevice(deviceId);
  347. // 失败回调
  348. fail(res);
  349. }
  350. );
  351. },
  352. fail(res) {
  353. console.log(res);
  354. // 如果连接失败,则关闭设备连接,并重新连接
  355. if (res.errCode == -1) {
  356. closeDevice(
  357. deviceId,
  358. (res) => {
  359. connectDevice(device, callback, fail);
  360. },
  361. (res) => {
  362. fail(res);
  363. }
  364. );
  365. } else {
  366. // 失败回调
  367. fail(res);
  368. }
  369. }
  370. });
  371. }
  372. // 函数alterConnect用于连接蓝牙设备
  373. function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
  374. // 判断设备是否支持蓝牙连接
  375. if (!bluetoothDeviceConfig(device) || !bluetoothDeviceConfig(device).acceptDevice(device)) {
  376. return;
  377. }
  378. // 获取蓝牙设备的服务列表
  379. uni.getBLEDeviceServices({
  380. deviceId: deviceId,
  381. success(res) {
  382. console.log(res,'res1111');
  383. // 获取蓝牙设备的写特征值
  384. uni.getBLEDeviceCharacteristics({
  385. deviceId: deviceId,
  386. serviceId: bluetoothDeviceConfig(device).writeServiceID,
  387. success(res) {
  388. console.log(res,'res22222');
  389. // 获取蓝牙设备的读特征值
  390. uni.getBLEDeviceCharacteristics({
  391. deviceId: deviceId,
  392. serviceId: bluetoothDeviceConfig(device).readServiceID,
  393. success(res) {
  394. console.log(res,'res3333');
  395. // 监听蓝牙设备的读特征值变化
  396. uni.notifyBLECharacteristicValueChange({
  397. state: true,
  398. deviceId: deviceId,
  399. serviceId: bluetoothDeviceConfig(device).readServiceID,
  400. characteristicId: bluetoothDeviceConfig(device).readID,
  401. success(res) {
  402. console.log(res);
  403. // 判断设备是否支持MTU,并且当前平台是否为安卓
  404. if (bluetoothDeviceConfig(device).MTU && SystemInfoUtil.platform == SystemInfoUtil.ANDROID) {
  405. // 设置蓝牙设备的MTU
  406. uni.setBLEMTU({
  407. deviceId: deviceId,
  408. mtu: bluetoothDeviceConfig(device).MTU,
  409. success: (res) => {
  410. console.log('setBLEMTU success>>', res);
  411. // 判断设备是否有alterConnect方法
  412. if (bluetoothDeviceConfig(device).alterConnect) {
  413. var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
  414. console.log(data,'data111111');
  415. // 判断alterConnect方法是否返回数据
  416. if (data) {
  417. // 写入数据
  418. writeData(device, deviceId, data, callback, fail);
  419. } else {
  420. // 调用回调函数
  421. callback(res);
  422. }
  423. } else {
  424. // 调用回调函数
  425. callback(res);
  426. }
  427. },
  428. fail: (res) => {
  429. console.log('setBLEMTU fail>>', res);
  430. // 判断设备是否有alterConnect方法
  431. if (bluetoothDeviceConfig(device).alterConnect) {
  432. var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
  433. // 判断alterConnect方法是否返回数据
  434. if (data) {
  435. // 写入数据
  436. writeData(device, deviceId, data, callback, fail);
  437. } else {
  438. // 调用回调函数
  439. callback(res);
  440. }
  441. } else {
  442. // 调用回调函数
  443. callback(res);
  444. }
  445. }
  446. });
  447. } else {
  448. // 判断设备是否有alterConnect方法
  449. if (bluetoothDeviceConfig(device).alterConnect) {
  450. var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
  451. // 判断alterConnect方法是否返回数据
  452. if (data) {
  453. // 写入数据
  454. writeData(device, deviceId, data, callback, fail);
  455. } else {
  456. // 调用回调函数
  457. callback(res);
  458. }
  459. } else {
  460. // 调用回调函数
  461. callback(res);
  462. }
  463. }
  464. },
  465. fail(res) {
  466. // 调用失败回调函数
  467. fail(res);
  468. }
  469. });
  470. },
  471. fail(res) {
  472. // 调用失败回调函数
  473. fail(res);
  474. }
  475. });
  476. },
  477. fail(res) {
  478. // 调用失败回调函数
  479. fail(res);
  480. }
  481. });
  482. },
  483. fail(res) {
  484. // 调用失败回调函数
  485. fail(res);
  486. }
  487. });
  488. }
  489. // 关闭设备连接
  490. function closeDevice(macid, callback = () => {}, fail = () => {}) {
  491. // 获取设备ID
  492. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  493. // 如果设备ID不存在,则调用fail函数
  494. if (deviceId == undefined) {
  495. fail();
  496. return;
  497. } else {
  498. // 如果设备未连接,则调用callback函数
  499. if (!app.globalData.connectionState[deviceId].connected) {
  500. callback();
  501. return;
  502. }
  503. }
  504. // 获取设备信息
  505. const device = app.globalData.connectionState[deviceId].device;
  506. // 关闭设备连接
  507. uni.closeBLEConnection({
  508. deviceId: deviceId,
  509. success: (res) => {
  510. console.log(res);
  511. // 如果设备连接状态存在,则将连接状态设置为false
  512. if (app.globalData.connectionState[deviceId]) {
  513. app.globalData.connectionState[deviceId].connected = false;
  514. }
  515. // 调用callback函数
  516. callback(res);
  517. },
  518. fail(res) {
  519. console.log(res);
  520. // 调用fail函数
  521. fail(res);
  522. }
  523. });
  524. }
  525. function bmsInfo(macid) {
  526. console.log(macid);
  527. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  528. if (deviceId == undefined) {
  529. return false;
  530. }
  531. const device = app.globalData.connectionState[deviceId].device;
  532. if (!bluetoothDeviceConfig(device).bmsInfo) {
  533. return false;
  534. }
  535. return bluetoothDeviceConfig(device).bmsInfo(device, deviceId, app.globalData.connectionState[deviceId].data);
  536. }
  537. function bmsSet(macid, name, vars, callback = () => {}, fail = () => {}) {
  538. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  539. if (deviceId == undefined) {
  540. fail();
  541. return false;
  542. }
  543. const device = app.globalData.connectionState[deviceId].device;
  544. if (!bluetoothDeviceConfig(device).bmsSet) {
  545. fail();
  546. return false;
  547. }
  548. var data = bluetoothDeviceConfig(device).bmsSet(device, deviceId, name, vars);
  549. if (data) {
  550. writeData(device, deviceId, data, callback, fail);
  551. return true;
  552. }
  553. fail();
  554. return false;
  555. }
  556. // 定义一个函数,用于向蓝牙设备写入数据
  557. function writeData(device, deviceId, data, callback = () => {}, fail = () => {}) {
  558. // 如果数据长度为0,则直接返回
  559. if (data.length == 0) {
  560. return;
  561. }
  562. // 将数据转换为ArrayBuffer类型
  563. var buffer;
  564. buffer = common.toArrayBuffer(data.shift());
  565. // 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
  566. uni.writeBLECharacteristicValue({
  567. deviceId: deviceId,
  568. serviceId: bluetoothDeviceConfig(device).writeServiceID,
  569. characteristicId: bluetoothDeviceConfig(device).writeID,
  570. value: buffer,
  571. // 成功回调函数
  572. success(res) {
  573. console.log('writeData 写入成功');
  574. // 如果数据长度为0,则调用回调函数
  575. if (data.length == 0) {
  576. callback(res);
  577. } else {
  578. // 否则,延时500毫秒后再次调用writeData函数
  579. setTimeout(() => {
  580. writeData(device, deviceId, data, callback, fail);
  581. }, 500);
  582. }
  583. },
  584. // 失败回调函数
  585. fail(res) {
  586. console.log(res);
  587. // 调用失败回调函数
  588. fail(res);
  589. }
  590. });
  591. }
  592. function stateUpdate(macid, callback = () => {}, fail = () => {}) {
  593. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  594. if (deviceId == undefined) {
  595. fail();
  596. return false;
  597. }
  598. const device = app.globalData.connectionState[deviceId].device;
  599. if (!bluetoothDeviceConfig(device).stateUpdate) {
  600. fail();
  601. return false;
  602. }
  603. var data = bluetoothDeviceConfig(device).stateUpdate(device, deviceId);
  604. if (data) {
  605. writeData(device, deviceId, data, callback, fail);
  606. return true;
  607. }
  608. fail();
  609. return false;
  610. }
  611. function voltageToEle(macid, value, callback = () => {}, fail = () => {}) {
  612. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  613. if (deviceId == undefined) {
  614. fail();
  615. return false;
  616. }
  617. const device = app.globalData.connectionState[deviceId].device;
  618. if (!bluetoothDeviceConfig(device).voltageToEle) {
  619. fail();
  620. return false;
  621. }
  622. var data = bluetoothDeviceConfig(device).voltageToEle(device, value);
  623. if (data) {
  624. writeData(device, deviceId, data, callback, fail);
  625. return true;
  626. }
  627. fail();
  628. return false;
  629. }
  630. function turnOn(macid, callback = () => {}, fail = () => {}) {
  631. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  632. if (deviceId == undefined) {
  633. fail();
  634. return false;
  635. }
  636. const device = app.globalData.connectionState[deviceId].device;
  637. if (!bluetoothDeviceConfig(device).turnOn) {
  638. fail();
  639. return false;
  640. }
  641. var data = bluetoothDeviceConfig(device).turnOn(device, deviceId);
  642. if (data) {
  643. writeData(device, deviceId, data, callback, fail);
  644. return true;
  645. }
  646. fail();
  647. return false;
  648. }
  649. function turnOnBuzzer(macid, callback = () => {}, fail = () => {}) {
  650. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  651. if (deviceId == undefined) {
  652. fail();
  653. return false;
  654. }
  655. const device = app.globalData.connectionState[deviceId].device;
  656. if (!bluetoothDeviceConfig(device).turnOnBuzzer) {
  657. fail();
  658. return false;
  659. }
  660. var data = bluetoothDeviceConfig(device).turnOnBuzzer(device, deviceId);
  661. if (data) {
  662. writeData(device, deviceId, data, callback, fail);
  663. return true;
  664. }
  665. fail();
  666. return false;
  667. }
  668. function turnOffBuzzer(macid, callback = () => {}, fail = () => {}) {
  669. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  670. if (deviceId == undefined) {
  671. fail();
  672. return false;
  673. }
  674. const device = app.globalData.connectionState[deviceId].device;
  675. if (!bluetoothDeviceConfig(device).turnOffBuzzer) {
  676. fail();
  677. return false;
  678. }
  679. var data = bluetoothDeviceConfig(device).turnOffBuzzer(device, deviceId);
  680. if (data) {
  681. writeData(device, deviceId, data, callback, fail);
  682. return true;
  683. }
  684. fail();
  685. return false;
  686. }
  687. function turnOff(macid, callback = () => {}, fail = () => {}) {
  688. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  689. if (deviceId == undefined) {
  690. fail();
  691. return false;
  692. }
  693. const device = app.globalData.connectionState[deviceId].device;
  694. if (!bluetoothDeviceConfig(device).turnOff) {
  695. fail();
  696. return false;
  697. }
  698. var data = bluetoothDeviceConfig(device).turnOff(device, deviceId);
  699. if (data) {
  700. writeData(device, deviceId, data, callback, fail);
  701. return true;
  702. }
  703. fail();
  704. return false;
  705. }
  706. function bmsChargingMOS(macid, value, callback = () => {}, fail = () => {}) {
  707. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  708. if (deviceId == undefined) {
  709. fail();
  710. return false;
  711. }
  712. const device = app.globalData.connectionState[deviceId].device;
  713. if (!bluetoothDeviceConfig(device).bmsChargingMOS) {
  714. fail();
  715. return false;
  716. }
  717. var data = bluetoothDeviceConfig(device).bmsChargingMOS(value - 0, device);
  718. if (data) {
  719. writeData(device, deviceId, data, callback, fail);
  720. return true;
  721. }
  722. fail();
  723. return false;
  724. }
  725. function bmsDischargeMOS(macid, value, callback = () => {}, fail = () => {}) {
  726. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  727. if (deviceId == undefined) {
  728. fail();
  729. return false;
  730. }
  731. const device = app.globalData.connectionState[deviceId].device;
  732. if (!bluetoothDeviceConfig(device).bmsDischargeMOS) {
  733. fail();
  734. return false;
  735. }
  736. var data = bluetoothDeviceConfig(device).bmsDischargeMOS(value - 0, device);
  737. if (data) {
  738. writeData(device, deviceId, data, callback, fail);
  739. return true;
  740. }
  741. fail();
  742. return false;
  743. }
  744. function isConnected(macid) {
  745. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  746. if (deviceId == undefined) {
  747. return false;
  748. }
  749. return app.globalData.connectionState[deviceId].connected;
  750. }
  751. function getData(macid) {
  752. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  753. if (deviceId == undefined) {
  754. return false;
  755. }
  756. return app.globalData.connectionState[deviceId].data;
  757. }
  758. function getConnectionState(macid) {
  759. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  760. if (deviceId == undefined) {
  761. return false;
  762. }
  763. return app.globalData.connectionState[deviceId];
  764. }
  765. function bluetoothDeviceConfig(device) {
  766. if (bluetoothDevices[device.bt_type]) {
  767. return bluetoothDevices[device.bt_type];
  768. } else if (bluetoothDevices[device.device_type]) {
  769. return bluetoothDevices[device.device_type];
  770. } else {
  771. return false;
  772. }
  773. }
  774. function isUniversalBluetoothPlugin(device) {
  775. if (bluetoothDevices[device.bt_type]) {
  776. return bluetoothDevices[device.bt_type];
  777. } else {
  778. return false;
  779. }
  780. }
  781. function sendHireCommand(macid, info, 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].sendHireCommand) {
  789. fail();
  790. return false;
  791. }
  792. var data = bluetoothDevices[device.device_type].sendHireCommand(info);
  793. if (data) {
  794. writeData(device, deviceId, data, callback, fail);
  795. return true;
  796. }
  797. fail();
  798. return false;
  799. }
  800. function sendBackCommand(macid, info, callback = () => {}, fail = () => {}) {
  801. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  802. if (deviceId == undefined) {
  803. fail();
  804. return false;
  805. }
  806. const device = app.globalData.connectionState[deviceId].device;
  807. if (!bluetoothDevices[device.device_type].sendBackCommand) {
  808. fail();
  809. return false;
  810. }
  811. var data = bluetoothDevices[device.device_type].sendBackCommand(info);
  812. if (data) {
  813. writeData(device, deviceId, data, callback, fail);
  814. return true;
  815. }
  816. fail();
  817. return false;
  818. }
  819. function sendExchangeCommand(macid, info, callback = () => {}, fail = () => {}) {
  820. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  821. if (deviceId == undefined) {
  822. fail();
  823. return false;
  824. }
  825. const device = app.globalData.connectionState[deviceId].device;
  826. if (!bluetoothDevices[device.device_type].sendExchangeCommand) {
  827. fail();
  828. return false;
  829. }
  830. var data = bluetoothDevices[device.device_type].sendExchangeCommand(info);
  831. if (data) {
  832. writeData(device, deviceId, data, callback, fail);
  833. return true;
  834. }
  835. fail();
  836. return false;
  837. }
  838. // 定义一个函数,用于发送获取柜子信息的命令
  839. function sendGetCabinetInfoCommand(macid, info, callback = () => {}, fail = () => {}) {
  840. // 获取设备ID
  841. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  842. console.log(deviceId,'deviceId0000');
  843. // 如果设备ID为空,则调用fail函数并返回false
  844. if (deviceId == undefined) {
  845. fail();
  846. return false;
  847. }
  848. console.log(app.globalData.connectionState[deviceId].device,'device333333');
  849. console.log(bluetoothDevices,'deviceId11111');
  850. console.log(bluetoothDevices['ZXCAR'].sendGetCabinetInfoCommand,'test333');
  851. // 获取设备信息
  852. const device = app.globalData.connectionState[deviceId].device;
  853. // 如果设备类型没有sendGetCabinetInfoCommand方法,则调用fail函数并返回false
  854. if (!bluetoothDevices[device.device_type].sendGetCabinetInfoCommand) {
  855. fail();
  856. return false;
  857. }
  858. console.log(bluetoothDevices[device.device_type].sendGetCabinetInfoCommand(info),'deviceId2222');
  859. // 调用sendGetCabinetInfoCommand方法,获取数据
  860. var data = bluetoothDevices[device.device_type].sendGetCabinetInfoCommand(info);
  861. // 如果数据存在,则调用writeData函数,并返回true
  862. if (data) {
  863. writeData(device, deviceId, data, callback, fail);
  864. return true;
  865. }
  866. fail();
  867. return false;
  868. }
  869. function sendConfirmCommand(macid, value, serialNum, callback = () => {}, fail = () => {}) {
  870. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  871. if (deviceId == undefined) {
  872. fail();
  873. return false;
  874. }
  875. const device = app.globalData.connectionState[deviceId].device;
  876. if (!bluetoothDevices[device.device_type].sendConfirmCommand) {
  877. fail();
  878. return false;
  879. }
  880. var data = bluetoothDevices[device.device_type].sendConfirmCommand(value, serialNum);
  881. if (data) {
  882. writeData(device, deviceId, data, callback, fail);
  883. return true;
  884. }
  885. fail();
  886. return false;
  887. }
  888. function sendCancelCommand(macid, serialNum, callback = () => {}, fail = () => {}) {
  889. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  890. if (deviceId == undefined) {
  891. fail();
  892. return false;
  893. }
  894. const device = app.globalData.connectionState[deviceId].device;
  895. if (!bluetoothDevices[device.device_type].sendCancelCommand) {
  896. fail();
  897. return false;
  898. }
  899. var data = bluetoothDevices[device.device_type].sendCancelCommand(serialNum);
  900. if (data) {
  901. writeData(device, deviceId, data, callback, fail);
  902. return true;
  903. }
  904. fail();
  905. return false;
  906. }
  907. //切换正常工厂模式
  908. function sendSwitchNormalCommand(macid, callback = () => {}, fail = () => {}) {
  909. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  910. if (deviceId == undefined) {
  911. fail();
  912. return false;
  913. }
  914. const device = app.globalData.connectionState[deviceId].device;
  915. if (!bluetoothDevices[device.device_type].switchFactory) {
  916. fail();
  917. return false;
  918. }
  919. var data = bluetoothDevices[device.device_type].switchFactory(device,deviceId);
  920. if (data) {
  921. console.log(data,'写入data');
  922. writeData(device, deviceId, data, callback, fail);
  923. return true;
  924. }
  925. fail();
  926. return false;
  927. }
  928. async function sendOTACommand(macid, value, callback = () => {}, fail = () => {}) {
  929. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  930. if (deviceId == undefined) {
  931. fail();
  932. return false;
  933. }
  934. const device = app.globalData.connectionState[deviceId].device;
  935. if ( await !bluetoothDeviceConfig(device).otaUpgrade) {
  936. fail();
  937. return false;
  938. }
  939. var data = await bluetoothDeviceConfig(device).otaUpgrade(value - 0, device);
  940. if (data) {
  941. writeData(device, deviceId, data, callback, fail);
  942. return true;
  943. }
  944. fail();
  945. return false;
  946. }
  947. module.exports = {
  948. initBluetooth: initBluetooth,
  949. onAdapterStateChange: onAdapterStateChange,
  950. offAdapterStateChange: offAdapterStateChange,
  951. onConnectionStateChange: onConnectionStateChange,
  952. offConnectionStateChange: offConnectionStateChange,
  953. onCharacteristicStateChange: onCharacteristicStateChange,
  954. offCharacteristicStateChange: offCharacteristicStateChange,
  955. getAdapterState: getAdapterState,
  956. openBluetoothAdapter: openBluetoothAdapter,
  957. closeBluetoothAdapter: closeBluetoothAdapter,
  958. acceptDevice: acceptDevice,
  959. findDevice: findDevice,
  960. connectDevice: connectDevice,
  961. closeDevice: closeDevice,
  962. stateUpdate: stateUpdate,
  963. turnOn: turnOn,
  964. turnOff: turnOff,
  965. turnOnBuzzer: turnOnBuzzer,
  966. turnOffBuzzer: turnOffBuzzer,
  967. bmsInfo: bmsInfo,
  968. bmsSet: bmsSet,
  969. isConnected: isConnected,
  970. getData: getData,
  971. isSingleBT: isSingleBT,
  972. isBuzzer: isBuzzer,
  973. haveBMSForBT: haveBMSForBT,
  974. isSginleBtByMacid: isSginleBtByMacid,
  975. getConnectionState: getConnectionState,
  976. bmsChargingMOS: bmsChargingMOS,
  977. bmsDischargeMOS: bmsDischargeMOS,
  978. bluetoothDeviceConfig: bluetoothDeviceConfig,
  979. voltageToEle: voltageToEle,
  980. isVoltageToEle: isVoltageToEle,
  981. isUniversalBluetoothPlugin: isUniversalBluetoothPlugin,
  982. //机柜协议增加
  983. sendHireCommand: sendHireCommand,
  984. sendBackCommand: sendBackCommand,
  985. sendExchangeCommand: sendExchangeCommand,
  986. sendGetCabinetInfoCommand: sendGetCabinetInfoCommand,
  987. sendConfirmCommand: sendConfirmCommand,
  988. sendCancelCommand: sendCancelCommand,
  989. //切换正常工厂模式写入
  990. sendSwitchNormalCommand,
  991. //蓝牙中控
  992. sendOTACommand
  993. };