bluetooth.js 45 KB

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