bluetooth.js 40 KB

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