bluetooth.js 44 KB

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