bluetooth.js 42 KB

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