bluetooth.js 46 KB

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