bluetooth.js 46 KB

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