ZXCar.js 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. const common = require('../common.js');
  2. const FMBMS = require('./FMBMS.js');
  3. var bluetooth = require('@/common/bluetooth.js');
  4. const readServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  5. const readID = '000036F6-0000-1000-8000-00805F9B34FB';
  6. const writeServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  7. const writeID = '000036F5-0000-1000-8000-00805F9B34FB';
  8. const MTU = 115;
  9. const app = getApp();
  10. let subIndex = -1
  11. let commands = []; // 升级包指令数组,每个指令是一个 ArrayBuffer
  12. let currentCommandIndex = 1;
  13. var totalLength = 0 //总包长度
  14. var joinPack = []//接收到的数据包
  15. var readRepeatTime = 0 //读到完整数据包的时间戳
  16. function acceptDevice(device) {
  17. return device.btid ? true : false;
  18. }
  19. function isSingleBt() {
  20. console.log('是单蓝牙');
  21. return true;
  22. }
  23. function haveBms() {
  24. console.log('是单蓝牙并且带bms');
  25. return true;
  26. }
  27. function isDevice(device, data) {
  28. // console.log(device,data,'device111');
  29. const advertisData = new Uint8Array(data.advertisData);
  30. // console.log(advertisData,'判断返回第几个字段是正常模式还是升级模式');
  31. //打印返回广播 判断返回字段是正常模式还是升级模式
  32. // console.log(advertisData.slice(4, 10).toString(),'device2222');
  33. const mac = device.btid
  34. .split('')
  35. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  36. .filter((p, i) => i % 2 == 0);
  37. // if ( advertisData.slice(4, 10).toString() == "095A5832") {
  38. // return true;
  39. // }
  40. //判断是否是智寻的蓝牙
  41. const result = data.name.startsWith("ZX");
  42. // if (data.name === "865416038002201") {
  43. // if (data.name === "ZX2503150000000") {
  44. if (result) {
  45. return true
  46. }
  47. return false;
  48. }
  49. //连接蓝牙后 发送登录指令
  50. function alterConnect(device, deviceId) {
  51. readRepeatTime=0
  52. // console.log(device,app.globalData.connectionState[deviceId],'deviceliuwei');
  53. //登录 crc[0x1F,0x0F,0x5A,0x58,0x32,0x32,0x30,0x32,0x32,0x32,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x08,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x67,0xAC,0x53,0xE7,0x08,0x00]
  54. //登录 [[0x22,0x22,0x01,0x1F,0x0F,0x5A,0x58,0x32,0x32,0x30,0x32,0x32,0x32,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x08,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x67,0xAC,0x53,0xE7,0x08,0x00,crc_data,0xAA,0xAA]]
  55. //时间戳 0x67AC53E7 0x65,0xB3,0xED,0x6F 16:00:05
  56. //切换正常,工厂下发指令 [[0x22,0x22,0x54,0x01,0x01,0x12,0xAA,0xAA]]
  57. //OTA 升级指令 [[0x22,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,n,0xCB,0xAA,0xAA]]
  58. // const data = [0x1F, 0x0F, ,0x5A,0x58, 0x35, 0x32, 0x30, 0x32, 0x32, 0x32, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
  59. console.log("校检---》")
  60. let data=[ 0x1F, 0x0F]
  61. const device_name=app.globalData.connectionState[deviceId].deviceName
  62. const device_sn=stringToHexArray(device_name)
  63. data.push(...device_sn)
  64. data.push(0x08, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x67, 0xAC, 0x53, 0xE7, 0x08, 0x00)
  65. // const data=[ 0x1F, 0x0F,0x38, 0x36, 0x35, 0x34, 0x31, 0x36, 0x30, 0x33, 0x38, 0x30, 0x30, 0x32, 0x32, 0x30, 0x31,0x08, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x67, 0xAC, 0x53, 0xE7, 0x08, 0x00]
  66. // console.log(data,'datatest');
  67. console.log(crc8IEEE8023(data).toString(16).toUpperCase(),'crc---------');
  68. const crc_data = parseInt(crc8IEEE8023(data).toString(16).toUpperCase(),16)
  69. data.push(crc_data,0xAA,0xAA)
  70. data.unshift(0x22,0x22,0x01)
  71. return [data]
  72. }
  73. function crc8IEEE8023(data) {
  74. const poly = 0x07; // IEEE 802.3 polynomial x^8 + x^2 + x + 1
  75. let crc = 0x00;
  76. for (let i = 0; i < data.length; i++) {
  77. crc ^= data[i];
  78. for (let j = 0; j < 8; j++) {
  79. if (crc & 0x80) {
  80. crc = ((crc << 1) ^ poly) & 0xFF;
  81. } else {
  82. crc = (crc << 1) & 0xFF;
  83. }
  84. }
  85. }
  86. return crc;
  87. }
  88. function stringToHexArray(str) {
  89. const result = [];
  90. for (let i = 0; i < str.length; i++) {
  91. const charCode = str.charCodeAt(i); // 获取字符的 ASCII 码值
  92. const hexValue=`0x${charCode.toString(16).toUpperCase()}`
  93. const hexDataValue=parseInt(hexValue,16)
  94. result.push(hexDataValue);
  95. }
  96. return result;
  97. }
  98. //收到硬件方向软件方发送的数据
  99. function readData(device, value, data) {
  100. console.log('***********************test');
  101. var test = new Uint8Array(value);
  102. const bmsData=Array.from(test);
  103. const normalArray =packBmsData(bmsData)
  104. if(normalArray){
  105. console.log(normalArray[2],'normalArray---------------');
  106. switch(normalArray[2]){
  107. case 0x60:
  108. //登陆指令
  109. loginCmd(device.mac_id,normalArray)
  110. break;
  111. case 0x61||0x62||0x65||0x7F:
  112. //开机指令 关机 寻车 //设置灵敏度回复
  113. trunCarCommand(device.mac_id,normalArray)
  114. break;
  115. case 0x66:
  116. //升级指令
  117. checkSendNextCommand(device.mac_id,normalArray)
  118. break;
  119. case 0x7C:
  120. //接近解锁指令
  121. nearCarCmd(device.mac_id,normalArray)
  122. break;
  123. case 0x7E:
  124. //获取车辆接近解锁 是否配对 灵敏度信息
  125. getNearCarCmdInfo(device.mac_id,normalArray)
  126. break;
  127. }
  128. }
  129. // console.log(normalArray,currentCommandIndex-1,commands[currentCommandIndex],commands[currentCommandIndex-1], 'value**************************');
  130. // if((normalArray[0]==0x00) && (normalArray[1]==0x01) && normalArray.length==2){
  131. // switch (normalArray[1]) {
  132. // case 0x01:
  133. // uni.showModal({
  134. // title: '提示',
  135. // confirmText: '开始升级',
  136. // content: '登陆成功,当前处于升级模式是否开始升级',
  137. // success: function(res) {
  138. // if (res.confirm) {
  139. // currentCommandIndex=0
  140. // otaUpgrade().then(()=>{
  141. // //登陆成功 且当前为升级模式可以发送升级文件
  142. // sendNextCommand(device.mac_id)
  143. // })
  144. // } else {}
  145. // }
  146. // });
  147. // return [1,1,2,3]
  148. // break;
  149. // }
  150. // }else if(normalArray[0]==0x00&&normalArray.length==1){
  151. // // common.simpleToast('开机成功', 2000)
  152. // return '操作成功'
  153. // }else{
  154. // switch(normalArray[3]){
  155. // case 0x00:
  156. // sendNextCommand(device.mac_id)
  157. // break;
  158. // case 0x01:
  159. // uni.hideLoading();
  160. // console.log(normalArray,commands.length,currentCommandIndex-1,commands[currentCommandIndex-3],commands[currentCommandIndex-2],commands[currentCommandIndex-1], 'value**************************');
  161. // common.simpleToast('升级文件回复失败', 2000)
  162. // // test() 升级文件回复失败
  163. // break;
  164. // }
  165. // }
  166. return data;
  167. }
  168. function loginCmd(mac_id,data){
  169. const len=data.length-4
  170. if(data[len-1]==0x00 && data[len]==0x01){
  171. uni.showModal({
  172. title: '提示',
  173. confirmText: '开始升级',
  174. content: '登陆成功,当前处于升级模式是否开始升级',
  175. success: function(res) {
  176. if (res.confirm) {
  177. currentCommandIndex=0
  178. otaUpgrade().then(()=>{
  179. //登陆成功 且当前为升级模式可以发送升级文件
  180. sendNextCommand(device.mac_id)
  181. })
  182. } else {}
  183. }
  184. });
  185. }else if(data[4]==0x00 && data[4]==0x00){
  186. // uni.hideLoading();
  187. //正常模式
  188. console.log('登陆成功');
  189. if('lockType' in app.globalData.nearLockInfo ){
  190. if(app.globalData.nearLockInfo.lockType==0){
  191. console.log('获取接近解锁指令为关闭');
  192. }else{
  193. uni.hideLoading();
  194. console.log('获取接近解锁指令为成功');
  195. }
  196. }else{
  197. const getNearUnlockSetCmd=getNearUnlockSet()
  198. console.log(getNearUnlockSetCmd,'getNearUnlockSetCmd');
  199. writeData(mac_id,getNearUnlockSetCmd)
  200. }
  201. }
  202. }
  203. function checkSendNextCommand(mac_id,data){
  204. const len=data.length-4
  205. if(data[len]==0x00){
  206. sendNextCommand(device.mac_id)
  207. }else if(data[len]==0x01){
  208. uni.hideLoading();
  209. // console.log(normalArray,commands.length,currentCommandIndex-1,commands[currentCommandIndex-3],commands[currentCommandIndex-2],commands[currentCommandIndex-1], 'value**************************');
  210. common.simpleToast('升级文件回复失败')
  211. }
  212. }
  213. function trunCarCommand(mac_id,data){
  214. uni.hideLoading();
  215. const len=data.length-4
  216. if(data[len]==0x00){
  217. common.simpleToast('操作成功')
  218. }else if(data[len]==0x01){
  219. common.simpleToast('操作失败')
  220. }
  221. }
  222. function nearCarCmd(mac_id,data){
  223. uni.hideLoading();
  224. const len=data.length-4
  225. if(data[len]==0x00){
  226. common.simpleToast('操作成功')
  227. }else if(data[len]==0x01){
  228. common.simpleToast('操作失败')
  229. }
  230. }
  231. //处理蓝牙三段回复 综合成一个数组
  232. function packBmsData(value) {
  233. if (value.length!=0) {
  234. console.log(endTime - readRepeatTime);
  235. if (endTime - readRepeatTime > 8000) {//超过8秒,说明数据有问题,数据清空
  236. readRepeatTime = endTime
  237. joinPack = []
  238. }
  239. // console.log((value[0] == 0x22) && (value[1]== 0x22),joinPack,'000000');
  240. if((value[0] == 0x22) && (value[1]== 0x22)){//当开始符为标志符 代表接收包开始
  241. var endTime = new Date().getTime()
  242. totalLength = value[3]//包长度
  243. joinPack=value
  244. // console.log(joinPack,value,'111111');
  245. }else if(joinPack.length!=0 && (joinPack[0] == 0x22) && (joinPack[1]== 0x22)){
  246. const len=joinPack.length-1
  247. const diffJoinLength =joinPack.length-4
  248. readRepeatTime = endTime
  249. // console.log(totalLength,diffJoinLength,value,'2222222');
  250. if(totalLength > diffJoinLength){//内容长度符合为完整包
  251. joinPack.push(...value)
  252. return joinPack
  253. }else if(totalLength <= diffJoinLength){
  254. joinPack = []
  255. }
  256. }
  257. else{
  258. readRepeatTime = endTime
  259. joinPack = []
  260. return joinPack
  261. }
  262. }
  263. }
  264. function mergeUint8Array(arr1, arr2) {
  265. let len1 = arr1 ? arr1.length : 0;
  266. let len2 = arr2.length;
  267. let arr = new Uint8Array(len1 + len2);
  268. for (let i = 0; i < len1; i++) {
  269. arr[i] = arr1[i];
  270. }
  271. for (let i = 0; i < len2; i++) {
  272. arr[len1 + i] = arr2[i];
  273. }
  274. return arr;
  275. }
  276. //发送指令封装
  277. function sendCommand(cmd, data = []) {
  278. readRepeatTime=0
  279. let cmdData = [0x22, 0x22]
  280. // cmdData.push(cmd)
  281. //协议号 cmd
  282. //包长度 data.length
  283. const dataLen=parseInt(data.length.toString(16).toUpperCase(), 16)
  284. //信息内容 cmd
  285. //crc校验
  286. const pData=[dataLen,...data]
  287. const crcData='0x'+crc8IEEE8023(pData).toString(16).toUpperCase()
  288. cmdData.push(cmd,dataLen,...data,crcData,0xAA, 0xAA)
  289. // console.log(cmdData,'cmdDatacmdData');
  290. return cmdData
  291. }
  292. function turnOnCar(device, deviceId) {
  293. return [sendCommand(0x02,[0x02])];
  294. }
  295. function turnOffCar(device, deviceId) {
  296. return [sendCommand(0x03,[0x03])];
  297. }
  298. function findCarCmd(device, deviceId) {
  299. return [sendCommand(0x06,[0x06])];
  300. }
  301. function openCarSeat(device, deviceId) {
  302. return [sendCommand(0x07,[0x07])];
  303. }
  304. function openCarTrunk(device, deviceId) {
  305. return [sendCommand(0x08,[0x08])];
  306. }
  307. function getCarPressure(device, deviceId) {
  308. return [sendCommand(0x4A,[0x4A])];
  309. }
  310. function nearUnlock(device, deviceId) {
  311. return [sendCommand(0x4B,[0x02])];
  312. }
  313. function nearCloseUnlock(device, deviceId) {
  314. return [sendCommand(0x4B,[0x00])];
  315. }
  316. function getSensitivity(device, deviceId) {
  317. return [sendCommand(0x4F,[0x4F])];
  318. }
  319. function setSensitivity(device, deviceId,type) {
  320. return [sendCommand(0x4E,['0x4'+type])];
  321. }
  322. function setNearUnlock(device, deviceId,type) {
  323. return [sendCommand(0x4D,[0x4D])];
  324. }
  325. function getNearUnlockSet(device, deviceId,type) {
  326. return [sendCommand(0x4D,[0x4D])];
  327. }
  328. function getNearCarCmdInfo(mac_id,data){
  329. const pData={
  330. lockType:data[4],//接近解锁配置
  331. level:data[5],//感应等级
  332. status:data[6]//配对状态
  333. }
  334. console.log(pData,data,pData.status,'pData');
  335. app.globalData.nearLockInfo=pData
  336. if(pData.lockType==0x02||pData.lockType==0x01){
  337. console.log('已开启配对');
  338. common.simpleToast('感应解锁已开启,前往设置灵敏度页面')
  339. uni.navigateTo({ url: '/pages/bluetoothUnlock/unlockset' })
  340. uni.hideLoading();
  341. if( pData.status == 0x01){
  342. common.simpleToast('配对成功')
  343. return
  344. }else if(pData.status==0x00){
  345. common.simpleToast('未配对')
  346. }
  347. }else if(pData.lockType==0x00){
  348. console.log('未开启配对')
  349. const nearUnlockCmd=nearUnlock()
  350. console.log(nearUnlockCmd,'nearUnlockCmd');
  351. writeData(mac_id,nearUnlockCmd)
  352. }
  353. }
  354. function switchFactory(device, deviceId) {
  355. //切换正常,工厂模式指令
  356. //切换工厂模式 [[0x22,0x22,0x54,0x01,0x01,0x12,0xAA,0xAA]]
  357. //切换正常模式 [[0x22,0x22,0x54,0x01,0x00,0x15,0xAA,0xAA]]
  358. return [[0x22,0x22,0x54,0x01,0x01,0x12,0xAA,0xAA]]
  359. // return [sendCommand([0x54, 0x01, 0x01, 0x12])];
  360. }
  361. //升级按钮
  362. function otaUpgrade(device){
  363. const data = readBinBinarayToCommand()
  364. data.then(result=>{commands=result})
  365. // console.log(data,'datatest111');
  366. return data
  367. }
  368. async function readBinBinarayToCommand() {
  369. let res =await uni.request({
  370. url: 'https://opt.bms16.com/ota.BIN', // 文件的网络地址
  371. method: 'GET',
  372. responseType: 'arraybuffer', // 指定响应类型为 arraybuffer
  373. });
  374. const arrayBuffer=res[1].data
  375. const uint8Array = new Uint8Array(arrayBuffer); // 转换为 Uint8Array
  376. const test = splitArrayIntoChunks(uint8Array, 80); // 分割成长度为 80 的数组
  377. const data =makeArr(test)
  378. return data
  379. }
  380. function sendNextCommand(mac_id) {
  381. readRepeatTime=0
  382. // console.log(currentCommandIndex,commands.length,'开始发送指令');
  383. // console.log(commands[currentCommandIndex],'command');
  384. if (currentCommandIndex >= commands.length) {
  385. uni.hideLoading();
  386. common.simpleToast('所有指令发送完成', 2000)
  387. return;
  388. }
  389. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == mac_id);
  390. if (deviceId == undefined) {
  391. console.log('deviceId == undefined');
  392. return ;
  393. }
  394. const command = [commands[currentCommandIndex]];
  395. if(command.length==0){
  396. return
  397. }
  398. // // 将数据转换为ArrayBuffer类型
  399. var buffer;
  400. buffer = common.toArrayBuffer(command.shift());
  401. // console.log(command,'command');
  402. uni.writeBLECharacteristicValue({
  403. deviceId: deviceId, // 替换为实际的设备 ID
  404. serviceId: writeServiceID, // 替换为实际的服务 ID
  405. characteristicId: writeID, // 替换为可写入的特征值 ID
  406. value: buffer,
  407. success() {
  408. // console.log('指令发送成功,等待设备响应',currentCommandIndex,commands[currentCommandIndex]);
  409. },
  410. fail(err) {
  411. console.error('指令发送失败', err);
  412. }
  413. });
  414. currentCommandIndex++;
  415. }
  416. function splitArrayIntoChunks(array, chunkSize) {
  417. const newArr=array.slice(16383)
  418. const numChunks = Math.ceil(newArr.length / chunkSize);
  419. return Array.from({ length: numChunks }, (_, i) => {
  420. return newArr.slice(i * chunkSize, (i + 1) * chunkSize);
  421. });
  422. }
  423. // 处理分割后的数组
  424. function makeArr(array) {
  425. const result = [];
  426. let endPackage;
  427. for (let i = 0; i < array.length; i ++) {
  428. endPackage = 0x00
  429. if((i + 1) >= array.length){
  430. //当前是最后一次循环
  431. endPackage = 0x01
  432. }
  433. // if(i==2) return
  434. //协议号 30 包长度未固定array.length+8 转16进制 固件类型0x00 升级包大小(总包大小) 125396字节-》0x00,0x01,0xE9,0xD4
  435. let startArray = []
  436. const packageLen=parseInt((array[i].length+8).toString(16).toUpperCase(), 16)
  437. // const totalPackageSize=[0x00,0x00,0x01,0xE9,0xD4]
  438. // const totalPackageSize=[0x00,0x00,0x01,0xeb,0xfc]
  439. const totalPackageSize=[0x00,0x00,0x01,0xAB,0xFC]
  440. startArray.push(packageLen,...totalPackageSize)
  441. //软件包id
  442. const ids=splitNumber(i) // 0x00,0x01
  443. startArray.push(...ids)
  444. //是否为最后一个包
  445. startArray.push(endPackage)
  446. //软件数据包
  447. const formattedChunk = array[i].map(byte => `0x${byte.toString(16).toUpperCase()}`); // 转换为 0xXX 格式
  448. startArray.push(...formattedChunk)
  449. // if(i>95&& i<105){
  450. // console.log(startArray,'startArray-------');
  451. // }
  452. //crc检验
  453. const crcStr='0x'+crc8IEEE8023(startArray).toString(16).toUpperCase()
  454. const testCrc=parseInt(crcStr,16)
  455. startArray.push(crcStr)
  456. startArray.push(0xAA,0xAA)
  457. startArray.unshift(0x22,0x22,0x30)
  458. result.push(startArray);
  459. }
  460. // result.push([0x22,0x22,0x30,0x58,0x00,0x00,0x00,0xE9,0xD4,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2C,0xAA,0xAA])
  461. return result;
  462. }
  463. function splitNumber(num) {
  464. let highByte = (num >> 8) & 0xFF; // 对于0-255的数字,结果总是0
  465. // 低字节
  466. let lowByte = num & 0xFF;
  467. // 将每个字节转换为两位的十六进制字符串,并添加'0x'前缀
  468. let highHex = highByte.toString(16).toUpperCase().padStart(2, '0'); // 确保是两位十六进制数
  469. let lowHex = lowByte.toString(16).toUpperCase().padStart(2, '0'); // 确保是两位十六进制数
  470. // 返回结果数组(这里实际上可以返回一个对象或字符串,根据需求调整)
  471. return ['0x' + highHex, '0x' + lowHex];
  472. }
  473. // 定义一个函数,用于向蓝牙设备写入数据
  474. function writeData(mac_id, data, callback = () => {}, fail = () => {}) {
  475. const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == mac_id);
  476. if (deviceId == undefined) {
  477. return ;
  478. }
  479. // 如果数据长度为0,则直接返回
  480. if (data.length == 0) {
  481. return;
  482. }
  483. // 将数据转换为ArrayBuffer类型
  484. var buffer;
  485. buffer = common.toArrayBuffer(data.shift());
  486. // 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
  487. uni.writeBLECharacteristicValue({
  488. deviceId: deviceId,
  489. serviceId: writeServiceID,
  490. characteristicId: writeID,
  491. value: buffer,
  492. // 成功回调函数
  493. success(res) {
  494. // 如果数据长度为0,则调用回调函数
  495. if (data.length == 0) {
  496. callback(res);
  497. } else {
  498. // 否则,延时500毫秒后再次调用writeData函数
  499. setTimeout(() => {
  500. writeData(device, deviceId, data, callback, fail);
  501. }, 500);
  502. }
  503. },
  504. // 失败回调函数
  505. fail(res) {
  506. console.log(res);
  507. // 调用失败回调函数
  508. fail(res);
  509. }
  510. });
  511. }
  512. module.exports = {
  513. readServiceID: readServiceID,
  514. readID: readID,
  515. writeServiceID: writeServiceID,
  516. writeID: writeID,
  517. MTU: MTU,
  518. acceptDevice: acceptDevice,
  519. isDevice: isDevice,
  520. alterConnect: alterConnect,
  521. readData: readData,
  522. turnOffCar: turnOffCar,
  523. isSingleBt: isSingleBt,
  524. haveBms: haveBms,
  525. switchFactory: switchFactory,
  526. otaUpgrade,
  527. findCarCmd,
  528. turnOffCar,
  529. turnOnCar,
  530. getCarPressure,
  531. nearUnlock,
  532. nearCloseUnlock,
  533. getSensitivity,
  534. setSensitivity,
  535. getNearUnlockSet,
  536. setNearUnlock,
  537. };