bluetooth.js 46 KB

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