ZXCar.js 19 KB

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