ZXCar.js 18 KB

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