bluetooth.js 44 KB

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