bluetooth.js 43 KB

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