bluetooth.js 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063
  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,'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. deviceName:data.name,
  233. deviceId: deviceId,
  234. connected: false,
  235. data: {}
  236. };
  237. }
  238. callback(deviceId);
  239. }
  240. });
  241. setTimeout(function () {
  242. if (!deviceId) {
  243. // uni.offBluetoothDeviceFound();
  244. uni.stopBluetoothDevicesDiscovery();
  245. var res = {
  246. errCode: 9000001,
  247. errMsg: 'openBluetoothAdapter:find not device',
  248. errno: 9000002
  249. };
  250. fail(res);
  251. }
  252. }, 5000);
  253. },
  254. fail(res) {
  255. uni.stopBluetoothDevicesDiscovery();
  256. console.log(res);
  257. fail(res);
  258. }
  259. });
  260. // 监听蓝牙设备发现事件
  261. uni.onBluetoothDeviceFound((res) => {
  262. // console.log(res);
  263. // 遍历搜索到的蓝牙设备列表
  264. res.devices.forEach((data) => {
  265. // 检查当前设备是否为目标设备
  266. if (bluetoothDeviceConfig(device).isDevice(device, data)) {
  267. // uni.offBluetoothDeviceFound();
  268. // 停止蓝牙设备搜索
  269. uni.stopBluetoothDevicesDiscovery();
  270. deviceId = data.deviceId;
  271. // 检查全局状态中是否已经存在该设备
  272. if (app.globalData.connectionState[deviceId]) {
  273. app.globalData.connectionState[deviceId].device = device;
  274. } else {
  275. // 如果不存在,创建新的设备状态对象
  276. app.globalData.connectionState[deviceId] = {
  277. device: device,
  278. deviceName:data.name,
  279. deviceId: deviceId,
  280. connected: false,
  281. data: {}
  282. };
  283. console.log(app.globalData.connectionState[deviceId],'datatest--------');
  284. }
  285. callback(deviceId);
  286. }
  287. });
  288. });
  289. },
  290. fail(res) {
  291. console.log(res);
  292. fail(res);
  293. }
  294. });
  295. }
  296. // 连接设备函数
  297. function connectDevice(device, callback = () => {}, fail = () => {}) {
  298. // 打印设备信息
  299. console.log(device);
  300. // 判断设备是否符合蓝牙设备配置
  301. if (!bluetoothDeviceConfig(device) || !bluetoothDeviceConfig(device).acceptDevice(device)) {
  302. return;
  303. }
  304. // 获取设备ID
  305. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == device.mac_id);
  306. console.log(deviceId,'连接函数connectDevice deviceId');
  307. // 判断设备是否已经连接
  308. if (deviceId == undefined) {
  309. // 如果设备未连接,则查找设备
  310. findDevice(
  311. device,
  312. (deviceId) => {
  313. // 递归调用连接设备函数
  314. connectDevice(device, callback, fail);
  315. },
  316. (res) => {
  317. // 失败回调
  318. fail(res);
  319. }
  320. );
  321. return;
  322. } else {
  323. // 如果设备已经连接,则直接回调
  324. if (app.globalData.connectionState[deviceId].connected) {
  325. callback();
  326. return;
  327. }
  328. }
  329. const device_name=app.globalData.connectionState[deviceId].deviceName
  330. // 创建蓝牙连接
  331. uni.createBLEConnection({
  332. deviceId: deviceId,
  333. success: (res) => {
  334. console.log(res,'蓝牙连接成功');
  335. // 更新连接状态
  336. app.globalData.connectionState[deviceId] = {
  337. device: device,
  338. deviceName: device_name,
  339. deviceId: deviceId,
  340. connected: true,
  341. data: {}
  342. };
  343. // 调用连接成功回调
  344. alterConnect(
  345. device,
  346. deviceId,
  347. (res) => {
  348. console.log('uni.createBLEConnection');
  349. callback(res);
  350. },
  351. (res) => {
  352. console.log(' uni.createBLEConnection');
  353. // 关闭设备连接
  354. closeDevice(deviceId);
  355. // 失败回调
  356. fail(res);
  357. }
  358. );
  359. },
  360. fail(res) {
  361. console.log(res);
  362. // 如果连接失败,则关闭设备连接,并重新连接
  363. if (res.errCode == -1) {
  364. closeDevice(
  365. deviceId,
  366. (res) => {
  367. connectDevice(device, callback, fail);
  368. },
  369. (res) => {
  370. fail(res);
  371. }
  372. );
  373. } else {
  374. // 失败回调
  375. fail(res);
  376. }
  377. }
  378. });
  379. }
  380. // 函数alterConnect用于连接蓝牙设备
  381. function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
  382. // 判断设备是否支持蓝牙连接
  383. if (!bluetoothDeviceConfig(device) || !bluetoothDeviceConfig(device).acceptDevice(device)) {
  384. return;
  385. }
  386. // 获取蓝牙设备的服务列表
  387. uni.getBLEDeviceServices({
  388. deviceId: deviceId,
  389. success(res) {
  390. console.log(res,'res1111');
  391. // 获取蓝牙设备的写特征值
  392. uni.getBLEDeviceCharacteristics({
  393. deviceId: deviceId,
  394. serviceId: bluetoothDeviceConfig(device).writeServiceID,
  395. success(res) {
  396. console.log(res,'res22222');
  397. // 获取蓝牙设备的读特征值
  398. uni.getBLEDeviceCharacteristics({
  399. deviceId: deviceId,
  400. serviceId: bluetoothDeviceConfig(device).readServiceID,
  401. success(res) {
  402. console.log(res,'res3333');
  403. // 监听蓝牙设备的读特征值变化
  404. uni.notifyBLECharacteristicValueChange({
  405. state: true,
  406. deviceId: deviceId,
  407. serviceId: bluetoothDeviceConfig(device).readServiceID,
  408. characteristicId: bluetoothDeviceConfig(device).readID,
  409. success(res) {
  410. console.log(res);
  411. // 判断设备是否支持MTU,并且当前平台是否为安卓
  412. if (bluetoothDeviceConfig(device).MTU && SystemInfoUtil.platform == SystemInfoUtil.ANDROID) {
  413. // 设置蓝牙设备的MTU
  414. uni.setBLEMTU({
  415. deviceId: deviceId,
  416. mtu: bluetoothDeviceConfig(device).MTU,
  417. success: (res) => {
  418. console.log('setBLEMTU success>>', res);
  419. // 判断设备是否有alterConnect方法
  420. if (bluetoothDeviceConfig(device).alterConnect) {
  421. var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
  422. console.log(data[0],'data111111');
  423. // 判断alterConnect方法是否返回数据
  424. if (data) {
  425. // 写入数据
  426. writeData(device, deviceId, data, callback, fail);
  427. } else {
  428. // 调用回调函数
  429. callback(res);
  430. }
  431. } else {
  432. // 调用回调函数
  433. callback(res);
  434. }
  435. },
  436. fail: (res) => {
  437. console.log('setBLEMTU fail>>', res);
  438. // 判断设备是否有alterConnect方法
  439. if (bluetoothDeviceConfig(device).alterConnect) {
  440. var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
  441. // 判断alterConnect方法是否返回数据
  442. if (data) {
  443. // 写入数据
  444. writeData(device, deviceId, data, callback, fail);
  445. } else {
  446. // 调用回调函数
  447. callback(res);
  448. }
  449. } else {
  450. // 调用回调函数
  451. callback(res);
  452. }
  453. }
  454. });
  455. } else {
  456. // 判断设备是否有alterConnect方法
  457. if (bluetoothDeviceConfig(device).alterConnect) {
  458. var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
  459. // 判断alterConnect方法是否返回数据
  460. if (data) {
  461. // 写入数据
  462. writeData(device, deviceId, data, callback, fail);
  463. } else {
  464. // 调用回调函数
  465. callback(res);
  466. }
  467. } else {
  468. // 调用回调函数
  469. callback(res);
  470. }
  471. }
  472. },
  473. fail(res) {
  474. // 调用失败回调函数
  475. fail(res);
  476. }
  477. });
  478. },
  479. fail(res) {
  480. // 调用失败回调函数
  481. fail(res);
  482. }
  483. });
  484. },
  485. fail(res) {
  486. // 调用失败回调函数
  487. fail(res);
  488. }
  489. });
  490. },
  491. fail(res) {
  492. // 调用失败回调函数
  493. fail(res);
  494. }
  495. });
  496. }
  497. // 关闭设备连接
  498. function closeDevice(macid, callback = () => {}, fail = () => {}) {
  499. // 获取设备ID
  500. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  501. // 如果设备ID不存在,则调用fail函数
  502. if (deviceId == undefined) {
  503. fail();
  504. return;
  505. } else {
  506. // 如果设备未连接,则调用callback函数
  507. if (!app.globalData.connectionState[deviceId].connected) {
  508. callback();
  509. return;
  510. }
  511. }
  512. // 获取设备信息
  513. const device = app.globalData.connectionState[deviceId].device;
  514. // 关闭设备连接
  515. uni.closeBLEConnection({
  516. deviceId: deviceId,
  517. success: (res) => {
  518. console.log(res);
  519. // 如果设备连接状态存在,则将连接状态设置为false
  520. if (app.globalData.connectionState[deviceId]) {
  521. app.globalData.connectionState[deviceId].connected = false;
  522. }
  523. // 调用callback函数
  524. callback(res);
  525. },
  526. fail(res) {
  527. console.log(res);
  528. // 调用fail函数
  529. fail(res);
  530. }
  531. });
  532. }
  533. function bmsInfo(macid) {
  534. console.log(macid);
  535. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  536. if (deviceId == undefined) {
  537. return false;
  538. }
  539. const device = app.globalData.connectionState[deviceId].device;
  540. if (!bluetoothDeviceConfig(device).bmsInfo) {
  541. return false;
  542. }
  543. return bluetoothDeviceConfig(device).bmsInfo(device, deviceId, app.globalData.connectionState[deviceId].data);
  544. }
  545. function bmsSet(macid, name, vars, callback = () => {}, fail = () => {}) {
  546. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  547. if (deviceId == undefined) {
  548. fail();
  549. return false;
  550. }
  551. const device = app.globalData.connectionState[deviceId].device;
  552. if (!bluetoothDeviceConfig(device).bmsSet) {
  553. fail();
  554. return false;
  555. }
  556. var data = bluetoothDeviceConfig(device).bmsSet(device, deviceId, name, vars);
  557. if (data) {
  558. writeData(device, deviceId, data, callback, fail);
  559. return true;
  560. }
  561. fail();
  562. return false;
  563. }
  564. // 定义一个函数,用于向蓝牙设备写入数据
  565. function writeData(device, deviceId, data, callback = () => {}, fail = () => {}) {
  566. // 如果数据长度为0,则直接返回
  567. if (data.length == 0) {
  568. return;
  569. }
  570. // 将数据转换为ArrayBuffer类型
  571. var buffer;
  572. buffer = common.toArrayBuffer(data.shift());
  573. // console.log(buffer,'buffer111');
  574. // 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
  575. uni.writeBLECharacteristicValue({
  576. deviceId: deviceId,
  577. serviceId: bluetoothDeviceConfig(device).writeServiceID,
  578. characteristicId: bluetoothDeviceConfig(device).writeID,
  579. value: buffer,
  580. // 成功回调函数
  581. success(res) {
  582. // console.log('writeData 写入成功');
  583. // 如果数据长度为0,则调用回调函数
  584. if (data.length == 0) {
  585. callback(res);
  586. } else {
  587. // 否则,延时500毫秒后再次调用writeData函数
  588. setTimeout(() => {
  589. writeData(device, deviceId, data, callback, fail);
  590. }, 500);
  591. }
  592. },
  593. // 失败回调函数
  594. fail(res) {
  595. console.log(res);
  596. // 调用失败回调函数
  597. fail(res);
  598. }
  599. });
  600. }
  601. function stateUpdate(macid, callback = () => {}, fail = () => {}) {
  602. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  603. if (deviceId == undefined) {
  604. fail();
  605. return false;
  606. }
  607. const device = app.globalData.connectionState[deviceId].device;
  608. if (!bluetoothDeviceConfig(device).stateUpdate) {
  609. fail();
  610. return false;
  611. }
  612. var data = bluetoothDeviceConfig(device).stateUpdate(device, deviceId);
  613. if (data) {
  614. writeData(device, deviceId, data, callback, fail);
  615. return true;
  616. }
  617. fail();
  618. return false;
  619. }
  620. function voltageToEle(macid, value, callback = () => {}, fail = () => {}) {
  621. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  622. if (deviceId == undefined) {
  623. fail();
  624. return false;
  625. }
  626. const device = app.globalData.connectionState[deviceId].device;
  627. if (!bluetoothDeviceConfig(device).voltageToEle) {
  628. fail();
  629. return false;
  630. }
  631. var data = bluetoothDeviceConfig(device).voltageToEle(device, value);
  632. if (data) {
  633. writeData(device, deviceId, data, callback, fail);
  634. return true;
  635. }
  636. fail();
  637. return false;
  638. }
  639. function turnOn(macid, callback = () => {}, fail = () => {}) {
  640. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  641. if (deviceId == undefined) {
  642. fail();
  643. return false;
  644. }
  645. const device = app.globalData.connectionState[deviceId].device;
  646. if (!bluetoothDeviceConfig(device).turnOn) {
  647. fail();
  648. return false;
  649. }
  650. var data = bluetoothDeviceConfig(device).turnOn(device, deviceId);
  651. if (data) {
  652. writeData(device, deviceId, data, callback, fail);
  653. return true;
  654. }
  655. fail();
  656. return false;
  657. }
  658. function turnOnBuzzer(macid, callback = () => {}, fail = () => {}) {
  659. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  660. if (deviceId == undefined) {
  661. fail();
  662. return false;
  663. }
  664. const device = app.globalData.connectionState[deviceId].device;
  665. if (!bluetoothDeviceConfig(device).turnOnBuzzer) {
  666. fail();
  667. return false;
  668. }
  669. var data = bluetoothDeviceConfig(device).turnOnBuzzer(device, deviceId);
  670. if (data) {
  671. writeData(device, deviceId, data, callback, fail);
  672. return true;
  673. }
  674. fail();
  675. return false;
  676. }
  677. function turnOffBuzzer(macid, callback = () => {}, fail = () => {}) {
  678. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  679. if (deviceId == undefined) {
  680. fail();
  681. return false;
  682. }
  683. const device = app.globalData.connectionState[deviceId].device;
  684. if (!bluetoothDeviceConfig(device).turnOffBuzzer) {
  685. fail();
  686. return false;
  687. }
  688. var data = bluetoothDeviceConfig(device).turnOffBuzzer(device, deviceId);
  689. if (data) {
  690. writeData(device, deviceId, data, callback, fail);
  691. return true;
  692. }
  693. fail();
  694. return false;
  695. }
  696. function turnOff(macid, callback = () => {}, fail = () => {}) {
  697. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  698. if (deviceId == undefined) {
  699. fail();
  700. return false;
  701. }
  702. const device = app.globalData.connectionState[deviceId].device;
  703. if (!bluetoothDeviceConfig(device).turnOff) {
  704. fail();
  705. return false;
  706. }
  707. var data = bluetoothDeviceConfig(device).turnOff(device, deviceId);
  708. if (data) {
  709. writeData(device, deviceId, data, callback, fail);
  710. return true;
  711. }
  712. fail();
  713. return false;
  714. }
  715. function bmsChargingMOS(macid, value, callback = () => {}, fail = () => {}) {
  716. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  717. if (deviceId == undefined) {
  718. fail();
  719. return false;
  720. }
  721. const device = app.globalData.connectionState[deviceId].device;
  722. if (!bluetoothDeviceConfig(device).bmsChargingMOS) {
  723. fail();
  724. return false;
  725. }
  726. var data = bluetoothDeviceConfig(device).bmsChargingMOS(value - 0, device);
  727. if (data) {
  728. writeData(device, deviceId, data, callback, fail);
  729. return true;
  730. }
  731. fail();
  732. return false;
  733. }
  734. function bmsDischargeMOS(macid, value, callback = () => {}, fail = () => {}) {
  735. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  736. if (deviceId == undefined) {
  737. fail();
  738. return false;
  739. }
  740. const device = app.globalData.connectionState[deviceId].device;
  741. if (!bluetoothDeviceConfig(device).bmsDischargeMOS) {
  742. fail();
  743. return false;
  744. }
  745. var data = bluetoothDeviceConfig(device).bmsDischargeMOS(value - 0, device);
  746. if (data) {
  747. writeData(device, deviceId, data, callback, fail);
  748. return true;
  749. }
  750. fail();
  751. return false;
  752. }
  753. function isConnected(macid) {
  754. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  755. if (deviceId == undefined) {
  756. return false;
  757. }
  758. return app.globalData.connectionState[deviceId].connected;
  759. }
  760. function getData(macid) {
  761. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  762. if (deviceId == undefined) {
  763. return false;
  764. }
  765. return app.globalData.connectionState[deviceId].data;
  766. }
  767. function getConnectionState(macid) {
  768. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  769. if (deviceId == undefined) {
  770. return false;
  771. }
  772. return app.globalData.connectionState[deviceId];
  773. }
  774. function bluetoothDeviceConfig(device) {
  775. if (bluetoothDevices[device.bt_type]) {
  776. return bluetoothDevices[device.bt_type];
  777. } else if (bluetoothDevices[device.device_type]) {
  778. return bluetoothDevices[device.device_type];
  779. } else {
  780. return false;
  781. }
  782. }
  783. function isUniversalBluetoothPlugin(device) {
  784. if (bluetoothDevices[device.bt_type]) {
  785. return bluetoothDevices[device.bt_type];
  786. } else {
  787. return false;
  788. }
  789. }
  790. function sendHireCommand(macid, info, callback = () => {}, fail = () => {}) {
  791. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  792. if (deviceId == undefined) {
  793. fail();
  794. return false;
  795. }
  796. const device = app.globalData.connectionState[deviceId].device;
  797. if (!bluetoothDevices[device.device_type].sendHireCommand) {
  798. fail();
  799. return false;
  800. }
  801. var data = bluetoothDevices[device.device_type].sendHireCommand(info);
  802. if (data) {
  803. writeData(device, deviceId, data, callback, fail);
  804. return true;
  805. }
  806. fail();
  807. return false;
  808. }
  809. function sendBackCommand(macid, info, callback = () => {}, fail = () => {}) {
  810. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  811. if (deviceId == undefined) {
  812. fail();
  813. return false;
  814. }
  815. const device = app.globalData.connectionState[deviceId].device;
  816. if (!bluetoothDevices[device.device_type].sendBackCommand) {
  817. fail();
  818. return false;
  819. }
  820. var data = bluetoothDevices[device.device_type].sendBackCommand(info);
  821. if (data) {
  822. writeData(device, deviceId, data, callback, fail);
  823. return true;
  824. }
  825. fail();
  826. return false;
  827. }
  828. function sendExchangeCommand(macid, info, callback = () => {}, fail = () => {}) {
  829. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  830. if (deviceId == undefined) {
  831. fail();
  832. return false;
  833. }
  834. const device = app.globalData.connectionState[deviceId].device;
  835. if (!bluetoothDevices[device.device_type].sendExchangeCommand) {
  836. fail();
  837. return false;
  838. }
  839. var data = bluetoothDevices[device.device_type].sendExchangeCommand(info);
  840. if (data) {
  841. writeData(device, deviceId, data, callback, fail);
  842. return true;
  843. }
  844. fail();
  845. return false;
  846. }
  847. // 定义一个函数,用于发送获取柜子信息的命令
  848. function sendGetCabinetInfoCommand(macid, info, callback = () => {}, fail = () => {}) {
  849. // 获取设备ID
  850. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  851. console.log(deviceId,'deviceId0000');
  852. // 如果设备ID为空,则调用fail函数并返回false
  853. if (deviceId == undefined) {
  854. fail();
  855. return false;
  856. }
  857. console.log(app.globalData.connectionState[deviceId].device,'device333333');
  858. console.log(bluetoothDevices,'deviceId11111');
  859. console.log(bluetoothDevices['ZXCAR'].sendGetCabinetInfoCommand,'test333');
  860. // 获取设备信息
  861. const device = app.globalData.connectionState[deviceId].device;
  862. // 如果设备类型没有sendGetCabinetInfoCommand方法,则调用fail函数并返回false
  863. if (!bluetoothDevices[device.device_type].sendGetCabinetInfoCommand) {
  864. fail();
  865. return false;
  866. }
  867. console.log(bluetoothDevices[device.device_type].sendGetCabinetInfoCommand(info),'deviceId2222');
  868. // 调用sendGetCabinetInfoCommand方法,获取数据
  869. var data = bluetoothDevices[device.device_type].sendGetCabinetInfoCommand(info);
  870. // 如果数据存在,则调用writeData函数,并返回true
  871. if (data) {
  872. writeData(device, deviceId, data, callback, fail);
  873. return true;
  874. }
  875. fail();
  876. return false;
  877. }
  878. function sendConfirmCommand(macid, value, serialNum, callback = () => {}, fail = () => {}) {
  879. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  880. if (deviceId == undefined) {
  881. fail();
  882. return false;
  883. }
  884. const device = app.globalData.connectionState[deviceId].device;
  885. if (!bluetoothDevices[device.device_type].sendConfirmCommand) {
  886. fail();
  887. return false;
  888. }
  889. var data = bluetoothDevices[device.device_type].sendConfirmCommand(value, serialNum);
  890. if (data) {
  891. writeData(device, deviceId, data, callback, fail);
  892. return true;
  893. }
  894. fail();
  895. return false;
  896. }
  897. function sendCancelCommand(macid, serialNum, callback = () => {}, fail = () => {}) {
  898. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  899. if (deviceId == undefined) {
  900. fail();
  901. return false;
  902. }
  903. const device = app.globalData.connectionState[deviceId].device;
  904. if (!bluetoothDevices[device.device_type].sendCancelCommand) {
  905. fail();
  906. return false;
  907. }
  908. var data = bluetoothDevices[device.device_type].sendCancelCommand(serialNum);
  909. if (data) {
  910. writeData(device, deviceId, data, callback, fail);
  911. return true;
  912. }
  913. fail();
  914. return false;
  915. }
  916. //切换正常工厂模式
  917. function sendSwitchNormalCommand(macid, callback = () => {}, fail = () => {}) {
  918. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  919. if (deviceId == undefined) {
  920. fail();
  921. return false;
  922. }
  923. const device = app.globalData.connectionState[deviceId].device;
  924. if (!bluetoothDevices[device.device_type].switchFactory) {
  925. fail();
  926. return false;
  927. }
  928. var data = bluetoothDevices[device.device_type].switchFactory(device,deviceId);
  929. if (data) {
  930. console.log(data,'写入data');
  931. writeData(device, deviceId, data, callback, fail);
  932. return true;
  933. }
  934. fail();
  935. return false;
  936. }
  937. function sendOTACommand(macid, callback = () => {}, fail = () => {}) {
  938. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  939. if (deviceId == undefined) {
  940. fail();
  941. return false;
  942. }
  943. const device = app.globalData.connectionState[deviceId].device;
  944. if ( !bluetoothDevices[device.device_type].otaUpgrade) {
  945. fail();
  946. return false;
  947. }
  948. var data = bluetoothDevices[device.device_type].otaUpgrade(device,deviceId);
  949. if (data) {
  950. data.then(result => {
  951. console.log(result[0],'result');
  952. writeData(device, deviceId, [result[0]], callback, fail);
  953. // const testData=result.slice(0,3)
  954. // const testData=result
  955. // for(let i = 0; i < testData.length; i++){
  956. // if(i==(testData.length-1)){
  957. // console.log('发送升级文件结束');
  958. // }
  959. // console.log(testData[i],'[testData[i]]');
  960. // writeData(device, deviceId, [testData[i]], callback, fail);
  961. // }
  962. }).catch(error => {
  963. console.error(error); // 如果Promise被拒绝,这将打印出错误信息
  964. });
  965. return true;
  966. }
  967. fail();
  968. return false;
  969. }
  970. function executeDeviceCommand(macid, commandName, callback = () => {}, fail = () => {}) {
  971. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  972. if (deviceId == undefined) {
  973. fail();
  974. return false;
  975. }
  976. const device = app.globalData.connectionState[deviceId].device;
  977. if (!bluetoothDeviceConfig(device)[commandName]) {
  978. fail();
  979. return false;
  980. }
  981. var data = bluetoothDeviceConfig(device)[commandName](device, deviceId);
  982. if (data) {
  983. writeData(device, deviceId, data, callback, fail);
  984. return true;
  985. }
  986. fail();
  987. return false;
  988. }
  989. function turnOnCar(macid, callback = () => {}, fail = () => {}) {
  990. return executeDeviceCommand(macid, 'turnOnCar', callback, fail);
  991. }
  992. function turnOffCar(macid, callback = () => {}, fail = () => {}) {
  993. return executeDeviceCommand(macid, 'turnOffCar', callback, fail);
  994. }
  995. function findCarCmd(macid, callback = () => {}, fail = () => {}) {
  996. return executeDeviceCommand(macid, 'findCarCmd', callback, fail);
  997. }
  998. module.exports = {
  999. initBluetooth: initBluetooth,
  1000. onAdapterStateChange: onAdapterStateChange,
  1001. offAdapterStateChange: offAdapterStateChange,
  1002. onConnectionStateChange: onConnectionStateChange,
  1003. offConnectionStateChange: offConnectionStateChange,
  1004. onCharacteristicStateChange: onCharacteristicStateChange,
  1005. offCharacteristicStateChange: offCharacteristicStateChange,
  1006. getAdapterState: getAdapterState,
  1007. openBluetoothAdapter: openBluetoothAdapter,
  1008. closeBluetoothAdapter: closeBluetoothAdapter,
  1009. acceptDevice: acceptDevice,
  1010. findDevice: findDevice,
  1011. connectDevice: connectDevice,
  1012. closeDevice: closeDevice,
  1013. stateUpdate: stateUpdate,
  1014. turnOn: turnOn,
  1015. turnOff: turnOff,
  1016. turnOnBuzzer: turnOnBuzzer,
  1017. turnOffBuzzer: turnOffBuzzer,
  1018. bmsInfo: bmsInfo,
  1019. bmsSet: bmsSet,
  1020. isConnected: isConnected,
  1021. getData: getData,
  1022. isSingleBT: isSingleBT,
  1023. isBuzzer: isBuzzer,
  1024. haveBMSForBT: haveBMSForBT,
  1025. isSginleBtByMacid: isSginleBtByMacid,
  1026. getConnectionState: getConnectionState,
  1027. bmsChargingMOS: bmsChargingMOS,
  1028. bmsDischargeMOS: bmsDischargeMOS,
  1029. bluetoothDeviceConfig: bluetoothDeviceConfig,
  1030. voltageToEle: voltageToEle,
  1031. isVoltageToEle: isVoltageToEle,
  1032. isUniversalBluetoothPlugin: isUniversalBluetoothPlugin,
  1033. //机柜协议增加
  1034. sendHireCommand: sendHireCommand,
  1035. sendBackCommand: sendBackCommand,
  1036. sendExchangeCommand: sendExchangeCommand,
  1037. sendGetCabinetInfoCommand: sendGetCabinetInfoCommand,
  1038. sendConfirmCommand: sendConfirmCommand,
  1039. sendCancelCommand: sendCancelCommand,
  1040. //切换正常工厂模式写入
  1041. sendSwitchNormalCommand,
  1042. //蓝牙中控
  1043. sendOTACommand,
  1044. // 执行设备命令
  1045. executeDeviceCommand,
  1046. turnOnCar,
  1047. turnOffCar,
  1048. findCarCmd,
  1049. };