bluetooth.js 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237
  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 car_sn=uni.getStorageSync('car_info').car_sn
  365. const deviceIds = app.globalData.connectionState[car_sn].deviceId
  366. console.log(deviceIds,'deviceIds');
  367. const device_name=app.globalData.connectionState[car_sn].deviceName
  368. // 创建蓝牙连接
  369. uni.createBLEConnection({
  370. deviceId: deviceIds,
  371. success: (res) => {
  372. console.log(res,'蓝牙连接成功');
  373. const app = getApp();
  374. // 更新连接状态
  375. app.globalData.connectionState[deviceId] = {
  376. device: device,
  377. deviceName: device_name,
  378. deviceId: deviceIds,
  379. connected: true,
  380. data: {}
  381. };
  382. // 调用连接成功回调
  383. // alterConnect(
  384. // device,
  385. // deviceIds,
  386. // (res) => {
  387. // console.log('uni.createBLEConnection');
  388. // callback(res);
  389. // },
  390. // (res) => {
  391. // console.log(' uni.createBLEConnection');
  392. // // 关闭设备连接
  393. // closeDevice(deviceId);
  394. // // 失败回调
  395. // fail(res);
  396. // }
  397. // );
  398. },
  399. fail(res) {
  400. console.log(res);
  401. // 如果连接失败,则关闭设备连接,并重新连接
  402. if (res.errCode == -1) {
  403. closeDevice(
  404. deviceId,
  405. (res) => {
  406. connectDevice(device, callback, fail);
  407. },
  408. (res) => {
  409. fail(res);
  410. }
  411. );
  412. } else {
  413. // 失败回调
  414. fail(res);
  415. }
  416. }
  417. });
  418. }
  419. // 函数alterConnect用于连接蓝牙设备
  420. function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
  421. // 判断设备是否支持蓝牙连接
  422. console.log("xxxx1",bluetoothDeviceConfig(device))
  423. if (!bluetoothDeviceConfig(device) || !bluetoothDeviceConfig(device).acceptDevice(device)) {
  424. return;
  425. }
  426. // callback()
  427. console.log("xxxx2")
  428. console.log(deviceId)
  429. // var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
  430. //蓝牙不使用登录指令
  431. // var data = bluetoothDeviceConfig(device).nearUnlock(device, deviceId);
  432. // setTimeout(()=>{
  433. // writeData(device, deviceId, data, callback, fail);
  434. // },1000)
  435. // 获取蓝牙设备的服务列表
  436. setTimeout(()=>{
  437. uni.getBLEDeviceServices({
  438. deviceId: deviceId,
  439. success(res) {
  440. console.log(res,'res1111');
  441. console.log(bluetoothDeviceConfig(device).writeServiceID)
  442. // 获取蓝牙设备的写特征值
  443. setTimeout(()=>{
  444. uni.getBLEDeviceCharacteristics({
  445. deviceId: deviceId,
  446. serviceId: bluetoothDeviceConfig(device).writeServiceID,
  447. success(res) {
  448. console.log(res,'res22222');
  449. // 获取蓝牙设备的读特征值
  450. uni.getBLEDeviceCharacteristics({
  451. deviceId: deviceId,
  452. serviceId: bluetoothDeviceConfig(device).readServiceID,
  453. success(res) {
  454. console.log(res,'res3333');
  455. // 监听蓝牙设备的读特征值变化
  456. uni.notifyBLECharacteristicValueChange({
  457. state: true,
  458. deviceId: deviceId,
  459. serviceId: bluetoothDeviceConfig(device).readServiceID,
  460. characteristicId: bluetoothDeviceConfig(device).readID,
  461. success(res) {
  462. console.log(res);
  463. callback(res);
  464. // 判断设备是否支持 ,并且当前平台是否为安卓
  465. // if (bluetoothDeviceConfig(device).MTU && SystemInfoUtil.platform == SystemInfoUtil.ANDROID) {
  466. // // 设置蓝牙设备的MTU
  467. // uni.setBLEMTU({
  468. // deviceId: deviceId,
  469. // mtu: bluetoothDeviceConfig(device).MTU,
  470. // success: (res) => {
  471. // console.log('setBLEMTU success>>', res);
  472. // // 判断设备是否有alterConnect方法
  473. // if (bluetoothDeviceConfig(device).getNearUnlockSet) {
  474. // var data = bluetoothDeviceConfig(device).getNearUnlockSet(device, deviceId);
  475. // console.log(data[0],'data111111');
  476. // // 判断alterConnect方法是否返回数据
  477. // if (data) {
  478. // // 写入数据
  479. // setTimeout(()=>{
  480. // writeData(device, deviceId, data, callback, fail);
  481. // },3000)
  482. // } else {
  483. // // 调用回调函数
  484. // callback(res);
  485. // }
  486. // } else {
  487. // // 调用回调函数
  488. // callback(res);
  489. // }
  490. // },
  491. // fail: (res) => {
  492. // console.log('setBLEMTU fail>>', res);
  493. // // 判断设备是否有alterConnect方法
  494. // if (bluetoothDeviceConfig(device).getNearUnlockSet) {
  495. // var data = bluetoothDeviceConfig(device).getNearUnlockSet(device, deviceId);
  496. // // 判断alterConnect方法是否返回数据
  497. // if (data) {
  498. // // 写入数据
  499. // writeData(device, deviceId, data, callback, fail);
  500. // } else {
  501. // // 调用回调函数
  502. // callback(res);
  503. // }
  504. // } else {
  505. // // 调用回调函数
  506. // callback(res);
  507. // }
  508. // }
  509. // });
  510. // } else {
  511. // // 判断设备是否有alterConnect方法
  512. // if (bluetoothDeviceConfig(device).getNearUnlockSet) {
  513. // var data = bluetoothDeviceConfig(device).getNearUnlockSet(device, deviceId);
  514. // // 判断alterConnect方法是否返回数据
  515. // if (data) {
  516. // // 写入数据
  517. // writeData(device, deviceId, data, callback, fail);
  518. // } else {
  519. // // 调用回调函数
  520. // callback(res);
  521. // }
  522. // } else {
  523. // // 调用回调函数
  524. // callback(res);
  525. // }
  526. // }
  527. },
  528. fail(res) {
  529. // 调用失败回调函数
  530. fail(res);
  531. }
  532. });
  533. },
  534. fail(res) {
  535. // 调用失败回调函数
  536. fail(res);
  537. }
  538. });
  539. },
  540. fail(res) {
  541. console.log('getBLEDeviceServices fail',res);
  542. // 调用失败回调函数
  543. fail(res);
  544. }
  545. });
  546. },500)
  547. },
  548. fail(res) {
  549. // 调用失败回调函数
  550. fail(res);
  551. }
  552. });
  553. },500)
  554. }
  555. // 关闭设备连接
  556. function closeDevice(macid, callback = () => {}, fail = () => {}) {
  557. const app=getApp()
  558. // 获取设备ID
  559. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  560. // 如果设备ID不存在,则调用fail函数
  561. if (deviceId == undefined) {
  562. fail();
  563. return;
  564. } else {
  565. // 如果设备未连接,则调用callback函数
  566. if (!app.globalData.connectionState[deviceId].connected) {
  567. callback();
  568. return;
  569. }
  570. }
  571. // 获取设备信息
  572. const device = app.globalData.connectionState[deviceId].device;
  573. // 关闭设备连接
  574. uni.closeBLEConnection({
  575. deviceId: deviceId,
  576. success: (res) => {
  577. console.log(res);
  578. const app = getApp();
  579. // 如果设备连接状态存在,则将连接状态设置为false
  580. if (app.globalData.connectionState[deviceId]) {
  581. app.globalData.connectionState[deviceId].connected = false;
  582. }
  583. // 调用callback函数
  584. callback(res);
  585. },
  586. fail(res) {
  587. console.log(res);
  588. // 调用fail函数
  589. fail(res);
  590. }
  591. });
  592. }
  593. function bmsInfo(macid) {
  594. console.log(macid);
  595. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  596. if (deviceId == undefined) {
  597. return false;
  598. }
  599. const device = app.globalData.connectionState[deviceId].device;
  600. if (!bluetoothDeviceConfig(device).bmsInfo) {
  601. return false;
  602. }
  603. return bluetoothDeviceConfig(device).bmsInfo(device, deviceId, app.globalData.connectionState[deviceId].data);
  604. }
  605. function bmsSet(macid, name, vars, callback = () => {}, fail = () => {}) {
  606. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  607. if (deviceId == undefined) {
  608. fail();
  609. return false;
  610. }
  611. const device = app.globalData.connectionState[deviceId].device;
  612. if (!bluetoothDeviceConfig(device).bmsSet) {
  613. fail();
  614. return false;
  615. }
  616. var data = bluetoothDeviceConfig(device).bmsSet(device, deviceId, name, vars);
  617. if (data) {
  618. writeData(device, deviceId, data, callback, fail);
  619. return true;
  620. }
  621. fail();
  622. return false;
  623. }
  624. // 定义一个函数,用于向蓝牙设备写入数据
  625. function writeData(device, deviceId, data, callback = () => {}, fail = () => {}) {
  626. // 如果数据长度为0,则直接返回
  627. console.log(data,'data写入---------------------');
  628. if (data.length == 0) {
  629. return;
  630. }
  631. console.log(data,data[0].length);
  632. // 将数据转换为ArrayBuffer类型
  633. // let buffer;
  634. // buffer = common.toArrayBuffer(data.shift());
  635. //buffer = common.toArrayBuffer(data.shift());
  636. var byteArray = data.shift()
  637. const buffer = new ArrayBuffer(byteArray.length);
  638. const dataView = new DataView(buffer);
  639. // 2. 逐个写入字节
  640. for (let i = 0; i < byteArray.length; i++) {
  641. dataView.setUint8(i, byteArray[i]);
  642. }
  643. console.log(data[0],buffer,'buffer写入---------------------');
  644. // console.log(buffer,'buffer111');
  645. // 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
  646. // setTimeout(() => {
  647. plus.bluetooth.writeBLECharacteristicValue({
  648. // uni.writeBLECharacteristicValue({
  649. deviceId: deviceId,
  650. serviceId: bluetoothDeviceConfig(device).writeServiceID,
  651. characteristicId: bluetoothDeviceConfig(device).writeID,
  652. writeType:'write',// 写入方式
  653. value: buffer,
  654. // 成功回调函数
  655. success(res) {
  656. uni.hideLoading();
  657. console.log('写入成功');
  658. // 如果数据长度为0,则调用回调函数
  659. if (data.length == 0) {
  660. callback(res);
  661. } else {
  662. // writeData(device, deviceId, data, callback, fail);
  663. // // 否则,延时500毫秒后再次调用writeData函数
  664. setTimeout(() => {
  665. writeData(device, deviceId, data, callback, fail);
  666. }, 150);
  667. }
  668. },
  669. // 失败回调函数
  670. fail(res) {
  671. console.log(res);
  672. // 调用失败回调函数
  673. fail(res);
  674. }
  675. });
  676. // }, 200);
  677. }
  678. function stateUpdate(macid, 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).stateUpdate) {
  687. fail();
  688. return false;
  689. }
  690. var data = bluetoothDeviceConfig(device).stateUpdate(device, deviceId);
  691. if (data) {
  692. writeData(device, deviceId, data, callback, fail);
  693. return true;
  694. }
  695. fail();
  696. return false;
  697. }
  698. function voltageToEle(macid, value, 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).voltageToEle) {
  707. fail();
  708. return false;
  709. }
  710. var data = bluetoothDeviceConfig(device).voltageToEle(device, value);
  711. if (data) {
  712. writeData(device, deviceId, data, callback, fail);
  713. return true;
  714. }
  715. fail();
  716. return false;
  717. }
  718. function turnOn(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).turnOn) {
  727. fail();
  728. return false;
  729. }
  730. var data = bluetoothDeviceConfig(device).turnOn(device, deviceId);
  731. if (data) {
  732. writeData(device, deviceId, data, callback, fail);
  733. return true;
  734. }
  735. fail();
  736. return false;
  737. }
  738. function turnOnBuzzer(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).turnOnBuzzer) {
  747. fail();
  748. return false;
  749. }
  750. var data = bluetoothDeviceConfig(device).turnOnBuzzer(device, deviceId);
  751. if (data) {
  752. writeData(device, deviceId, data, callback, fail);
  753. return true;
  754. }
  755. fail();
  756. return false;
  757. }
  758. function turnOffBuzzer(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).turnOffBuzzer) {
  767. fail();
  768. return false;
  769. }
  770. var data = bluetoothDeviceConfig(device).turnOffBuzzer(device, deviceId);
  771. if (data) {
  772. writeData(device, deviceId, data, callback, fail);
  773. return true;
  774. }
  775. fail();
  776. return false;
  777. }
  778. function turnOff(macid, 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).turnOff) {
  787. fail();
  788. return false;
  789. }
  790. var data = bluetoothDeviceConfig(device).turnOff(device, deviceId);
  791. if (data) {
  792. writeData(device, deviceId, data, callback, fail);
  793. return true;
  794. }
  795. fail();
  796. return false;
  797. }
  798. function bmsChargingMOS(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).bmsChargingMOS) {
  807. fail();
  808. return false;
  809. }
  810. var data = bluetoothDeviceConfig(device).bmsChargingMOS(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 bmsDischargeMOS(macid, value, callback = () => {}, fail = () => {}) {
  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. fail();
  823. return false;
  824. }
  825. const device = app.globalData.connectionState[deviceId].device;
  826. if (!bluetoothDeviceConfig(device).bmsDischargeMOS) {
  827. fail();
  828. return false;
  829. }
  830. var data = bluetoothDeviceConfig(device).bmsDischargeMOS(value - 0, device);
  831. if (data) {
  832. writeData(device, deviceId, data, callback, fail);
  833. return true;
  834. }
  835. fail();
  836. return false;
  837. }
  838. function isConnected(macid) {
  839. const app = getApp();
  840. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  841. if (deviceId == undefined) {
  842. return false;
  843. }
  844. return app.globalData.connectionState[deviceId].connected;
  845. }
  846. function getData(macid) {
  847. const app = getApp();
  848. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  849. if (deviceId == undefined) {
  850. return false;
  851. }
  852. return app.globalData.connectionState[deviceId].data;
  853. }
  854. function getConnectionState(macid) {
  855. const app = getApp();
  856. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  857. if (deviceId == undefined) {
  858. return false;
  859. }
  860. return app.globalData.connectionState[deviceId];
  861. }
  862. function bluetoothDeviceConfig(device) {
  863. if (bluetoothDevices[device.bt_type]) {
  864. return bluetoothDevices[device.bt_type];
  865. } else if (bluetoothDevices[device.device_type]) {
  866. return bluetoothDevices[device.device_type];
  867. } else {
  868. return false;
  869. }
  870. }
  871. function isUniversalBluetoothPlugin(device) {
  872. if (bluetoothDevices[device.bt_type]) {
  873. return bluetoothDevices[device.bt_type];
  874. } else {
  875. return false;
  876. }
  877. }
  878. function sendHireCommand(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].sendHireCommand) {
  887. fail();
  888. return false;
  889. }
  890. var data = bluetoothDevices[device.device_type].sendHireCommand(info);
  891. if (data) {
  892. writeData(device, deviceId, data, callback, fail);
  893. return true;
  894. }
  895. fail();
  896. return false;
  897. }
  898. function sendBackCommand(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].sendBackCommand) {
  907. fail();
  908. return false;
  909. }
  910. var data = bluetoothDevices[device.device_type].sendBackCommand(info);
  911. if (data) {
  912. writeData(device, deviceId, data, callback, fail);
  913. return true;
  914. }
  915. fail();
  916. return false;
  917. }
  918. function sendExchangeCommand(macid, info, callback = () => {}, fail = () => {}) {
  919. const app = getApp();
  920. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  921. if (deviceId == undefined) {
  922. fail();
  923. return false;
  924. }
  925. const device = app.globalData.connectionState[deviceId].device;
  926. if (!bluetoothDevices[device.device_type].sendExchangeCommand) {
  927. fail();
  928. return false;
  929. }
  930. var data = bluetoothDevices[device.device_type].sendExchangeCommand(info);
  931. if (data) {
  932. writeData(device, deviceId, data, callback, fail);
  933. return true;
  934. }
  935. fail();
  936. return false;
  937. }
  938. // 定义一个函数,用于发送获取柜子信息的命令
  939. function sendGetCabinetInfoCommand(macid, info, callback = () => {}, fail = () => {}) {
  940. const app = getApp();
  941. // 获取设备ID
  942. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  943. console.log(deviceId,'deviceId0000');
  944. // 如果设备ID为空,则调用fail函数并返回false
  945. if (deviceId == undefined) {
  946. fail();
  947. return false;
  948. }
  949. console.log(app.globalData.connectionState[deviceId].device,'device333333');
  950. console.log(bluetoothDevices,'deviceId11111');
  951. console.log(bluetoothDevices['ZXCAR'].sendGetCabinetInfoCommand,'test333');
  952. // 获取设备信息
  953. const device = app.globalData.connectionState[deviceId].device;
  954. // 如果设备类型没有sendGetCabinetInfoCommand方法,则调用fail函数并返回false
  955. if (!bluetoothDevices[device.device_type].sendGetCabinetInfoCommand) {
  956. fail();
  957. return false;
  958. }
  959. console.log(bluetoothDevices[device.device_type].sendGetCabinetInfoCommand(info),'deviceId2222');
  960. // 调用sendGetCabinetInfoCommand方法,获取数据
  961. var data = bluetoothDevices[device.device_type].sendGetCabinetInfoCommand(info);
  962. // 如果数据存在,则调用writeData函数,并返回true
  963. if (data) {
  964. writeData(device, deviceId, data, callback, fail);
  965. return true;
  966. }
  967. fail();
  968. return false;
  969. }
  970. function sendConfirmCommand(macid, value, 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].sendConfirmCommand) {
  979. fail();
  980. return false;
  981. }
  982. var data = bluetoothDevices[device.device_type].sendConfirmCommand(value, serialNum);
  983. if (data) {
  984. writeData(device, deviceId, data, callback, fail);
  985. return true;
  986. }
  987. fail();
  988. return false;
  989. }
  990. function sendCancelCommand(macid, serialNum, callback = () => {}, fail = () => {}) {
  991. const app = getApp();
  992. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  993. if (deviceId == undefined) {
  994. fail();
  995. return false;
  996. }
  997. const device = app.globalData.connectionState[deviceId].device;
  998. if (!bluetoothDevices[device.device_type].sendCancelCommand) {
  999. fail();
  1000. return false;
  1001. }
  1002. var data = bluetoothDevices[device.device_type].sendCancelCommand(serialNum);
  1003. if (data) {
  1004. writeData(device, deviceId, data, callback, fail);
  1005. return true;
  1006. }
  1007. fail();
  1008. return false;
  1009. }
  1010. //切换正常工厂模式
  1011. function sendSwitchNormalCommand(macid, callback = () => {}, fail = () => {}) {
  1012. const app = getApp();
  1013. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  1014. if (deviceId == undefined) {
  1015. fail();
  1016. return false;
  1017. }
  1018. const device = app.globalData.connectionState[deviceId].device;
  1019. if (!bluetoothDevices[device.device_type].switchFactory) {
  1020. fail();
  1021. return false;
  1022. }
  1023. var data = bluetoothDevices[device.device_type].switchFactory(device,deviceId);
  1024. if (data) {
  1025. console.log(data,'写入data');
  1026. writeData(device, deviceId, data, callback, fail);
  1027. return true;
  1028. }
  1029. fail();
  1030. return false;
  1031. }
  1032. function sendOTACommand(macid, callback = () => {}, fail = () => {}) {
  1033. const app = getApp();
  1034. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
  1035. if (deviceId == undefined) {
  1036. fail();
  1037. return false;
  1038. }
  1039. const device = app.globalData.connectionState[deviceId].device;
  1040. if ( !bluetoothDevices[device.device_type].otaUpgrade) {
  1041. fail();
  1042. return false;
  1043. }
  1044. var data = bluetoothDevices[device.device_type].otaUpgrade(device,deviceId);
  1045. if (data) {
  1046. data.then(result => {
  1047. console.log(result[0],'result');
  1048. writeData(device, deviceId, [result[0]], callback, fail);
  1049. // const testData=result.slice(0,3)
  1050. // const testData=result
  1051. // for(let i = 0; i < testData.length; i++){
  1052. // if(i==(testData.length-1)){
  1053. // console.log('发送升级文件结束');
  1054. // }
  1055. // console.log(testData[i],'[testData[i]]');
  1056. // writeData(device, deviceId, [testData[i]], callback, fail);
  1057. // }
  1058. }).catch(error => {
  1059. console.error(error); // 如果Promise被拒绝,这将打印出错误信息
  1060. });
  1061. return true;
  1062. }
  1063. fail();
  1064. return false;
  1065. }
  1066. function executeDeviceCommand(macid, commandName, callback = () => {}, fail = () => {}) {
  1067. console.log('test');
  1068. const app = getApp();
  1069. const deviceId = app.globalData.connectionState[macid].deviceId
  1070. if (deviceId == undefined) {
  1071. fail();
  1072. return false;
  1073. }
  1074. const device = app.globalData.connectionState[macid].device;
  1075. if (!bluetoothDeviceConfig(device)[commandName]) {
  1076. fail();
  1077. return false;
  1078. }
  1079. var data = bluetoothDeviceConfig(device)[commandName](device, deviceId);
  1080. if (data) {
  1081. setTimeout(()=>{
  1082. writeData(device, deviceId, data, callback, fail);
  1083. },6000)
  1084. return true;
  1085. }
  1086. fail();
  1087. return false;
  1088. }
  1089. //开机
  1090. function turnOnCar(macid, callback = () => {}, fail = () => {}) {
  1091. return executeDeviceCommand(macid, 'turnOnCar', callback, fail);
  1092. }
  1093. //关机
  1094. function turnOffCar(macid, callback = () => {}, fail = () => {}) {
  1095. return executeDeviceCommand(macid, 'turnOffCar', callback, fail);
  1096. }
  1097. //寻车
  1098. function findCarCmd(macid, callback = () => {}, fail = () => {}) {
  1099. return executeDeviceCommand(macid, 'findCarCmd', callback, fail);
  1100. }
  1101. //打开车座
  1102. function openCarSeat(macid, callback = () => {}, fail = () => {}) {
  1103. return executeDeviceCommand(macid, 'openCarSeat', callback, fail);
  1104. }
  1105. //打开车后备箱
  1106. function openCarTrunk(macid, callback = () => {}, fail = () => {}) {
  1107. return executeDeviceCommand(macid, 'openCarTrunk', callback, fail);
  1108. }
  1109. //获取胎压
  1110. function getCarPressure(macid, callback = () => {}, fail = () => {}) {
  1111. return executeDeviceCommand(macid, 'getCarPressure', callback, fail);
  1112. }
  1113. //打开接近解锁
  1114. function nearUnlock(macid, callback = () => {}, fail = () => {}) {
  1115. return executeDeviceCommand(macid, 'nearUnlock', callback, fail);
  1116. }
  1117. //关闭接近解锁
  1118. function nearCloseUnlock(macid, callback = () => {}, fail = () => {}) {
  1119. return executeDeviceCommand(macid, 'nearCloseUnlock', callback, fail);
  1120. }
  1121. //获取灵敏度设置
  1122. function getSensitivity(macid, callback = () => {}, fail = () => {}) {
  1123. return executeDeviceCommand(macid, 'getSensitivity', callback, fail);
  1124. }
  1125. //设置灵敏度
  1126. function setSensitivity(macid,type, callback = () => {}, fail = () => {}) {
  1127. const app = getApp();
  1128. const deviceId = app.globalData.connectionState[macid].deviceId
  1129. if (deviceId == undefined) {
  1130. fail();
  1131. return false;
  1132. }
  1133. const device = app.globalData.connectionState[macid].device;
  1134. if (!bluetoothDeviceConfig(device)[setSensitivity]) {
  1135. fail();
  1136. return false;
  1137. }
  1138. var data = bluetoothDeviceConfig(device)[setSensitivity](device, deviceId,type);
  1139. if (data) {
  1140. writeData(device, deviceId, data, callback, fail);
  1141. return true;
  1142. }
  1143. fail();
  1144. return false;
  1145. }
  1146. //
  1147. function setNearUnlock(macid, callback = () => {}, fail = () => {}) {
  1148. return executeDeviceCommand(macid, 'setNearUnlock', callback, fail);
  1149. }
  1150. //获取靠近解锁设置
  1151. function getNearUnlockSet(macid, callback = () => {}, fail = () => {}) {
  1152. return executeDeviceCommand(macid, 'getNearUnlockSet', callback, fail);
  1153. }
  1154. module.exports = {
  1155. initBluetooth: initBluetooth,
  1156. onAdapterStateChange: onAdapterStateChange,
  1157. offAdapterStateChange: offAdapterStateChange,
  1158. onConnectionStateChange: onConnectionStateChange,
  1159. offConnectionStateChange: offConnectionStateChange,
  1160. onCharacteristicStateChange: onCharacteristicStateChange,
  1161. offCharacteristicStateChange: offCharacteristicStateChange,
  1162. getAdapterState: getAdapterState,
  1163. openBluetoothAdapter: openBluetoothAdapter,
  1164. closeBluetoothAdapter: closeBluetoothAdapter,
  1165. acceptDevice: acceptDevice,
  1166. findDevice: findDevice,
  1167. connectDevice: connectDevice,
  1168. closeDevice: closeDevice,
  1169. stateUpdate: stateUpdate,
  1170. turnOn: turnOn,
  1171. turnOff: turnOff,
  1172. turnOnBuzzer: turnOnBuzzer,
  1173. turnOffBuzzer: turnOffBuzzer,
  1174. bmsInfo: bmsInfo,
  1175. bmsSet: bmsSet,
  1176. isConnected: isConnected,
  1177. getData: getData,
  1178. isSingleBT: isSingleBT,
  1179. isBuzzer: isBuzzer,
  1180. haveBMSForBT: haveBMSForBT,
  1181. isSginleBtByMacid: isSginleBtByMacid,
  1182. getConnectionState: getConnectionState,
  1183. bmsChargingMOS: bmsChargingMOS,
  1184. bmsDischargeMOS: bmsDischargeMOS,
  1185. bluetoothDeviceConfig: bluetoothDeviceConfig,
  1186. voltageToEle: voltageToEle,
  1187. isVoltageToEle: isVoltageToEle,
  1188. isUniversalBluetoothPlugin: isUniversalBluetoothPlugin,
  1189. //机柜协议增加
  1190. sendHireCommand: sendHireCommand,
  1191. sendBackCommand: sendBackCommand,
  1192. sendExchangeCommand: sendExchangeCommand,
  1193. sendGetCabinetInfoCommand: sendGetCabinetInfoCommand,
  1194. sendConfirmCommand: sendConfirmCommand,
  1195. sendCancelCommand: sendCancelCommand,
  1196. //切换正常工厂模式写入
  1197. sendSwitchNormalCommand,
  1198. //蓝牙中控
  1199. sendOTACommand,
  1200. // 执行设备命令
  1201. executeDeviceCommand,
  1202. turnOnCar,
  1203. turnOffCar,
  1204. findCarCmd,
  1205. openCarSeat,
  1206. openCarTrunk,
  1207. getCarPressure,
  1208. nearUnlock,
  1209. nearCloseUnlock,
  1210. getSensitivity,
  1211. setSensitivity,
  1212. getNearUnlockSet,
  1213. setNearUnlock,
  1214. };