bluetooth.js 46 KB

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