|
@@ -107,26 +107,29 @@ function stringToHexArray(str) {
|
|
|
//收到硬件方向软件方发送的数据
|
|
|
function readData(device, value, data) {
|
|
|
// console.log(value, 'test1111');
|
|
|
- var value = new Uint8Array(value);
|
|
|
- const normalArray = Array.from(value); // 或 [...uint8Array]
|
|
|
- console.log(normalArray,currentCommandIndex-1,commands[currentCommandIndex-1], 'value**************************');
|
|
|
- switch (normalArray[1]) {
|
|
|
- case 0x01:
|
|
|
- uni.showModal({
|
|
|
- title: '提示',
|
|
|
- confirmText: '开始升级',
|
|
|
- content: '登陆成功,当前处于升级模式是否开始升级',
|
|
|
- success: function(res) {
|
|
|
- if (res.confirm) {
|
|
|
- currentCommandIndex=0
|
|
|
- otaUpgrade().then(()=>{
|
|
|
- //登陆成功 且当前为升级模式可以发送升级文件
|
|
|
- sendNextCommand(device.mac_id)
|
|
|
- })
|
|
|
- } else {}
|
|
|
- }
|
|
|
- });
|
|
|
- break;
|
|
|
+ var test = new Uint8Array(value);
|
|
|
+ const normalArray = Array.from(test); // 或 [...uint8Array]
|
|
|
+ // console.log(normalArray,'normalArray---------------');
|
|
|
+ // console.log(normalArray,currentCommandIndex-1,commands[currentCommandIndex],commands[currentCommandIndex-1], 'value**************************');
|
|
|
+ if((normalArray[0]==0x00) && (normalArray[1]==0x01) && normalArray.length==2){
|
|
|
+ switch (normalArray[1]) {
|
|
|
+ case 0x01:
|
|
|
+ uni.showModal({
|
|
|
+ title: '提示',
|
|
|
+ confirmText: '开始升级',
|
|
|
+ content: '登陆成功,当前处于升级模式是否开始升级',
|
|
|
+ success: function(res) {
|
|
|
+ if (res.confirm) {
|
|
|
+ currentCommandIndex=0
|
|
|
+ otaUpgrade().then(()=>{
|
|
|
+ //登陆成功 且当前为升级模式可以发送升级文件
|
|
|
+ sendNextCommand(device.mac_id)
|
|
|
+ })
|
|
|
+ } else {}
|
|
|
+ }
|
|
|
+ });
|
|
|
+ break;
|
|
|
+ }
|
|
|
}
|
|
|
switch(normalArray[3]){
|
|
|
case 0x00:
|
|
@@ -136,10 +139,13 @@ function readData(device, value, data) {
|
|
|
|
|
|
case 0x01:
|
|
|
uni.hideLoading();
|
|
|
+ console.log(normalArray,commands.length,currentCommandIndex-1,commands[currentCommandIndex-3],commands[currentCommandIndex-2],commands[currentCommandIndex-1], 'value**************************');
|
|
|
common.simpleToast('升级文件回复失败', 2000)
|
|
|
// test() 升级文件回复失败
|
|
|
break;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -151,22 +157,20 @@ function readData(device, value, data) {
|
|
|
|
|
|
//发送指令封装
|
|
|
function sendCommand(cmd, data = []) {
|
|
|
- let cmdData = [0x02, 0x02]
|
|
|
+ let cmdData = [0x22, 0x22]
|
|
|
// cmdData.push(cmd)
|
|
|
//协议号 cmd
|
|
|
//包长度 data.length
|
|
|
- const dataLen=ensureInteger(data.length)
|
|
|
+ const dataLen=parseInt(data.length.toString(16).toUpperCase(), 16)
|
|
|
//信息内容 cmd
|
|
|
//crc校验
|
|
|
const pData=[dataLen,cmd]
|
|
|
const crcData='0x'+crc8IEEE8023(pData).toString(16).toUpperCase()
|
|
|
- cmdData.push(cmd,dataLen,crcData,0xAA, 0xAA)
|
|
|
+ cmdData.push(cmd,dataLen,cmd,crcData,0xAA, 0xAA)
|
|
|
+ // console.log(cmdData,'cmdDatacmdData');
|
|
|
return cmdData
|
|
|
}
|
|
|
-//转成16进制
|
|
|
-function ensureInteger(cmd){
|
|
|
- return parseInt((cmd).toString(16).toUpperCase(), 16)
|
|
|
-}
|
|
|
+
|
|
|
|
|
|
function turnOnCar(device, deviceId) {
|
|
|
return [sendCommand(0x02,[0x02])];
|
|
@@ -175,8 +179,17 @@ function turnOnCar(device, deviceId) {
|
|
|
function turnOffCar(device, deviceId) {
|
|
|
return [sendCommand(0x03,[0x03])];
|
|
|
}
|
|
|
-function defenseCmd(device, deviceId) {
|
|
|
- return [sendCommand(0x04,[0x04])];
|
|
|
+function findCarCmd(device, deviceId) {
|
|
|
+ return [sendCommand(0x06,[0x06])];
|
|
|
+}
|
|
|
+function openCarSeat(device, deviceId) {
|
|
|
+ return [sendCommand(0x07,[0x07])];
|
|
|
+}
|
|
|
+function openCarTrunk(device, deviceId) {
|
|
|
+ return [sendCommand(0x08,[0x08])];
|
|
|
+}
|
|
|
+function getCarPressure(device, deviceId) {
|
|
|
+ return [sendCommand(0x4A,[0x4A])];
|
|
|
}
|
|
|
|
|
|
function switchFactory(device, deviceId) {
|
|
@@ -205,15 +218,13 @@ async function readBinBinarayToCommand() {
|
|
|
const uint8Array = new Uint8Array(arrayBuffer); // 转换为 Uint8Array
|
|
|
const test = splitArrayIntoChunks(uint8Array, 80); // 分割成长度为 80 的数组
|
|
|
const data =makeArr(test)
|
|
|
- // const tests=data.slice(data.length-3)
|
|
|
- // console.log(data.length,tests[0],'testtest数组');
|
|
|
- // console.log(tests,'tests');
|
|
|
return data
|
|
|
}
|
|
|
|
|
|
function sendNextCommand(mac_id) {
|
|
|
+ console.log('开始发送指令');
|
|
|
// console.log(commands[currentCommandIndex],'command');
|
|
|
- if (currentCommandIndex >= commands.length) {
|
|
|
+ if (currentCommandIndex >= commands.length-1) {
|
|
|
uni.hideLoading();
|
|
|
common.simpleToast('所有指令发送完成', 2000)
|
|
|
return;
|
|
@@ -224,7 +235,6 @@ function sendNextCommand(mac_id) {
|
|
|
return ;
|
|
|
}
|
|
|
const command = [commands[currentCommandIndex]];
|
|
|
- console.log(command,'commandtest');
|
|
|
if(command.length==0){
|
|
|
return
|
|
|
}
|
|
@@ -238,7 +248,7 @@ function sendNextCommand(mac_id) {
|
|
|
characteristicId: writeID, // 替换为可写入的特征值 ID
|
|
|
value: buffer,
|
|
|
success() {
|
|
|
- // console.log('指令发送成功,等待设备响应');
|
|
|
+ // console.log('指令发送成功,等待设备响应',currentCommandIndex,commands[currentCommandIndex]);
|
|
|
},
|
|
|
fail(err) {
|
|
|
console.error('指令发送失败', err);
|
|
@@ -260,18 +270,18 @@ function makeArr(array) {
|
|
|
const result = [];
|
|
|
let endPackage;
|
|
|
for (let i = 0; i < array.length; i ++) {
|
|
|
-
|
|
|
endPackage = 0x00
|
|
|
if((i + 1) >= array.length){
|
|
|
//当前是最后一次循环
|
|
|
endPackage = 0x01
|
|
|
}
|
|
|
+ // if(i==2) return
|
|
|
//协议号 30 包长度未固定array.length+8 转16进制 固件类型0x00 升级包大小(总包大小) 125396字节-》0x00,0x01,0xE9,0xD4
|
|
|
let startArray = []
|
|
|
const packageLen=parseInt((array[i].length+8).toString(16).toUpperCase(), 16)
|
|
|
|
|
|
// const totalPackageSize=[0x00,0x00,0x01,0xE9,0xD4]
|
|
|
- const totalPackageSize=[0x00,0x00,0x01,0xe8,0x24]
|
|
|
+ const totalPackageSize=[0x00,0x00,0x01,0xeb,0xfc]
|
|
|
startArray.push(packageLen,...totalPackageSize)
|
|
|
//软件包id
|
|
|
const ids=splitNumber(i) // 0x00,0x01
|
|
@@ -287,9 +297,7 @@ function makeArr(array) {
|
|
|
//crc检验
|
|
|
const crcStr='0x'+crc8IEEE8023(startArray).toString(16).toUpperCase()
|
|
|
const testCrc=parseInt(crcStr,16)
|
|
|
- // if(i>95&& i<105){
|
|
|
- // console.log(testCrc,crcStr,'startArray*******');
|
|
|
- // }
|
|
|
+
|
|
|
startArray.push(crcStr)
|
|
|
startArray.push(0xAA,0xAA)
|
|
|
startArray.unshift(0x22,0x22,0x30)
|
|
@@ -302,21 +310,16 @@ function makeArr(array) {
|
|
|
|
|
|
|
|
|
function splitNumber(num) {
|
|
|
- // 将数字转换为字符串
|
|
|
- const numStr = num.toString();
|
|
|
-
|
|
|
- // 使用正则表达式分割字符串为两位一组
|
|
|
- const parts = numStr.match(/.{1,2}/g) || [];
|
|
|
-
|
|
|
- // 将字符串数组转换为数字数组
|
|
|
- let result = parts.map(part => parseInt(part, 10));
|
|
|
-
|
|
|
- // 如果数组长度为 1,前面补一个 0
|
|
|
- if (result.length === 1) {
|
|
|
- result = [0, ...result];
|
|
|
- }
|
|
|
-
|
|
|
- return result;
|
|
|
+ let highByte = (num >> 8) & 0xFF; // 对于0-255的数字,结果总是0
|
|
|
+ // 低字节
|
|
|
+ let lowByte = num & 0xFF;
|
|
|
+
|
|
|
+ // 将每个字节转换为两位的十六进制字符串,并添加'0x'前缀
|
|
|
+ let highHex = highByte.toString(16).toUpperCase().padStart(2, '0'); // 确保是两位十六进制数
|
|
|
+ let lowHex = lowByte.toString(16).toUpperCase().padStart(2, '0'); // 确保是两位十六进制数
|
|
|
+
|
|
|
+ // 返回结果数组(这里实际上可以返回一个对象或字符串,根据需求调整)
|
|
|
+ return ['0x' + highHex, '0x' + lowHex];
|
|
|
}
|
|
|
|
|
|
|
|
@@ -333,11 +336,14 @@ module.exports = {
|
|
|
isDevice: isDevice,
|
|
|
alterConnect: alterConnect,
|
|
|
readData: readData,
|
|
|
- turnOnCar: turnOnCar,
|
|
|
turnOffCar: turnOffCar,
|
|
|
isSingleBt: isSingleBt,
|
|
|
haveBms: haveBms,
|
|
|
switchFactory: switchFactory,
|
|
|
- otaUpgrade
|
|
|
+ otaUpgrade,
|
|
|
+ findCarCmd,
|
|
|
+ turnOffCar,
|
|
|
+ turnOnCar,
|
|
|
+ getCarPressure
|
|
|
|
|
|
};
|