bluetooth.js 44 KB

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