bluetooth.js 38 KB

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