|
@@ -40,8 +40,11 @@ function isDevice(device, data) {
|
|
|
// if ( advertisData.slice(4, 10).toString() == "095A5832") {
|
|
|
// return true;
|
|
|
// }
|
|
|
- // if (data.name === "ZX2202220000000") {
|
|
|
- if (data.name === "865416038002201") {
|
|
|
+ //判断是否是智寻的蓝牙
|
|
|
+ const result = data.name.startsWith("ZX");
|
|
|
+ // if (data.name === "865416038002201") {
|
|
|
+ // if (data.name === "ZX2503140000000") {
|
|
|
+ if (result) {
|
|
|
return true
|
|
|
}
|
|
|
|
|
@@ -49,6 +52,7 @@ function isDevice(device, data) {
|
|
|
}
|
|
|
|
|
|
function alterConnect(device, deviceId) {
|
|
|
+ // console.log(device,app.globalData.connectionState[deviceId],'deviceliuwei');
|
|
|
//登录 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]
|
|
|
//登录 [[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]]
|
|
|
//时间戳 0x67AC53E7 0x65,0xB3,0xED,0x6F 16:00:05
|
|
@@ -56,24 +60,18 @@ function alterConnect(device, deviceId) {
|
|
|
//OTA 升级指令 [[0x22,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,n,0xCB,0xAA,0xAA]]
|
|
|
|
|
|
// const data = [0x1F, 0x0F, ,0x5A,0x58, 0x35, 0x32, 0x30, 0x32, 0x32, 0x32, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
|
|
|
-
|
|
|
- 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]
|
|
|
+ let data=[ 0x1F, 0x0F]
|
|
|
+ const device_name=app.globalData.connectionState[deviceId].deviceName
|
|
|
+ const device_sn=stringToHexArray(device_name)
|
|
|
+ data.push(...device_sn)
|
|
|
+ data.push(0x08, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x67, 0xAC, 0x53, 0xE7, 0x08, 0x00)
|
|
|
+ // 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]
|
|
|
// console.log(data,'datatest');
|
|
|
- const crc_data = crc8IEEE8023(data)
|
|
|
- // console.log(crc_data, 111);
|
|
|
- // 示例数据(16进制字符串转换为字节数组)
|
|
|
- // const hexString = "1F0F38363534313630333830303232303108313233343536373867AC53E70800";
|
|
|
- // const byteArray = hexString.match(/.{1,2}/g).map(byte => parseInt(byte, 16));
|
|
|
- // console.log(byteArray,'byteArray');
|
|
|
- // 计算 CRC-8 IEEE 802.3 校验值
|
|
|
- // const crcResult = crc8IEEE8023(byteArray).toString(16).toUpperCase();
|
|
|
- // console.log("CRC-8 IEEE 802.3 Checksum:", crcResult.toString(16).toUpperCase());
|
|
|
- return [
|
|
|
- [0x22, 0x22, 0x01, 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,
|
|
|
- crc_data, 0xAA, 0xAA
|
|
|
- ]
|
|
|
- ]
|
|
|
- //return [sendCommand(0x01, [0xAB, 0xCD, 0xAB, 0xCD])]
|
|
|
+ const crc_data = '0x'+crc8IEEE8023(data).toString(16).toUpperCase()
|
|
|
+ data.push(crc_data,0xAA,0xAA)
|
|
|
+ data.unshift(0x22,0x22,0x01)
|
|
|
+
|
|
|
+ return [data]
|
|
|
}
|
|
|
|
|
|
function crc8IEEE8023(data) {
|
|
@@ -93,58 +91,105 @@ function crc8IEEE8023(data) {
|
|
|
return crc;
|
|
|
}
|
|
|
|
|
|
+function stringToHexArray(str) {
|
|
|
+ const result = [];
|
|
|
+ for (let i = 0; i < str.length; i++) {
|
|
|
+ const charCode = str.charCodeAt(i); // 获取字符的 ASCII 码值
|
|
|
+ const hexValue=`0x${charCode.toString(16).toUpperCase()}`
|
|
|
+ const hexDataValue=parseInt(hexValue,16)
|
|
|
+ result.push(hexDataValue);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
|
|
|
//收到硬件方向软件方发送的数据
|
|
|
function readData(device, value, data) {
|
|
|
// console.log(value, 'test1111');
|
|
|
- var value = new Uint8Array(value);
|
|
|
-
|
|
|
- const normalArray = Array.from(value); // 或 [...uint8Array]
|
|
|
- console.log(normalArray, 'value**************************');
|
|
|
- // switch (value[0]) {
|
|
|
- // case 0:
|
|
|
- // //登陆成功准备
|
|
|
- // switchFactory(device)
|
|
|
- // 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:
|
|
|
sendNextCommand(device.mac_id)
|
|
|
break;
|
|
|
|
|
|
+
|
|
|
case 0x01:
|
|
|
- test()
|
|
|
+ uni.hideLoading();
|
|
|
+ console.log(normalArray,commands.length,currentCommandIndex-1,commands[currentCommandIndex-3],commands[currentCommandIndex-2],commands[currentCommandIndex-1], 'value**************************');
|
|
|
+ common.simpleToast('升级文件回复失败', 2000)
|
|
|
+ // test() 升级文件回复失败
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
return data;
|
|
|
}
|
|
|
-function test(){
|
|
|
- currentCommandIndex=1
|
|
|
- console.log(commands[currentCommandIndex],'test');
|
|
|
-}
|
|
|
|
|
|
|
|
|
+//发送指令封装
|
|
|
function sendCommand(cmd, data = []) {
|
|
|
- const startCmd = [0x02, 0x02]
|
|
|
- const endCmd = [0xAA, 0xAA]
|
|
|
- data = startCmd.concat(cmd).concat(endCmd)
|
|
|
- console.log(data,'打印是否切换正常模式');
|
|
|
- return data
|
|
|
+ let cmdData = [0x22, 0x22]
|
|
|
+ // cmdData.push(cmd)
|
|
|
+ //协议号 cmd
|
|
|
+ //包长度 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,cmd,crcData,0xAA, 0xAA)
|
|
|
+ // console.log(cmdData,'cmdDatacmdData');
|
|
|
+ return cmdData
|
|
|
}
|
|
|
|
|
|
-function stateUpdate(device, deviceId) {
|
|
|
- return [sendCommand(0x04), sendCommand(0x02, FMBMS
|
|
|
-.BMSRead())]; //return [[0x02,0x00,0x15,0x15,0x00,0x4e,0x57,0x00,0x13,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x01,0x27,0x7b]]
|
|
|
-}
|
|
|
|
|
|
-function turnOn(device, deviceId) {
|
|
|
- return [sendCommand(0x02, FMBMS.BMSTurnOn())];
|
|
|
+function turnOnCar(device, deviceId) {
|
|
|
+ return [sendCommand(0x02,[0x02])];
|
|
|
}
|
|
|
|
|
|
-function turnOff(device, deviceId) {
|
|
|
- return [sendCommand(0x02, FMBMS.BMSTurnOff())];
|
|
|
+function turnOffCar(device, deviceId) {
|
|
|
+ return [sendCommand(0x03,[0x03])];
|
|
|
+}
|
|
|
+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) {
|
|
@@ -173,16 +218,15 @@ 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(commands[currentCommandIndex],'command');
|
|
|
- if (currentCommandIndex >= commands.length) {
|
|
|
- console.log('所有指令发送完成');
|
|
|
+ console.log('开始发送指令');
|
|
|
+ // console.log(commands[currentCommandIndex],'command');
|
|
|
+ if (currentCommandIndex >= commands.length-1) {
|
|
|
+ uni.hideLoading();
|
|
|
+ common.simpleToast('所有指令发送完成', 2000)
|
|
|
return;
|
|
|
}
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == mac_id);
|
|
@@ -191,7 +235,6 @@ function sendNextCommand(mac_id) {
|
|
|
return ;
|
|
|
}
|
|
|
const command = [commands[currentCommandIndex]];
|
|
|
-
|
|
|
if(command.length==0){
|
|
|
return
|
|
|
}
|
|
@@ -205,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);
|
|
@@ -225,19 +268,20 @@ function splitArrayIntoChunks(array, chunkSize) {
|
|
|
// 处理分割后的数组
|
|
|
function makeArr(array) {
|
|
|
const result = [];
|
|
|
+ let endPackage;
|
|
|
for (let i = 0; i < array.length; i ++) {
|
|
|
-
|
|
|
- let endPackage = 0x00
|
|
|
+ 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,0xE9,0xac]
|
|
|
+ const totalPackageSize=[0x00,0x00,0x01,0xeb,0xfc]
|
|
|
startArray.push(packageLen,...totalPackageSize)
|
|
|
//软件包id
|
|
|
const ids=splitNumber(i) // 0x00,0x01
|
|
@@ -245,19 +289,16 @@ function makeArr(array) {
|
|
|
//是否为最后一个包
|
|
|
startArray.push(endPackage)
|
|
|
//软件数据包
|
|
|
- const formattedChunk = array[i].map(byte => `0x${byte.toString(16).padStart(2, '0')}`); // 转换为 0xXX 格式
|
|
|
+ const formattedChunk = array[i].map(byte => `0x${byte.toString(16).toUpperCase()}`); // 转换为 0xXX 格式
|
|
|
startArray.push(...formattedChunk)
|
|
|
- // if(i==2){
|
|
|
- // console.log(startArray,'startArraystartArray');
|
|
|
+ // if(i>95&& i<105){
|
|
|
+ // console.log(startArray,'startArray-------');
|
|
|
// }
|
|
|
-
|
|
|
//crc检验
|
|
|
const crcStr='0x'+crc8IEEE8023(startArray).toString(16).toUpperCase()
|
|
|
const testCrc=parseInt(crcStr,16)
|
|
|
+
|
|
|
startArray.push(crcStr)
|
|
|
- // if(i==2){
|
|
|
- // console.log(startArray,crcStr,testCrc,'crcStr');
|
|
|
- // }
|
|
|
startArray.push(0xAA,0xAA)
|
|
|
startArray.unshift(0x22,0x22,0x30)
|
|
|
result.push(startArray);
|
|
@@ -269,82 +310,21 @@ 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];
|
|
|
}
|
|
|
|
|
|
|
|
|
-function dataRecursion(subPackage){
|
|
|
- subIndex += 1
|
|
|
- let endPackage = 0x00
|
|
|
- if(subPackage.groupedArray.length - 1 == subIndex){
|
|
|
- endPackage = 0x01
|
|
|
- }
|
|
|
- // let startArray = [0x22,0x22,0x30, 0x30,0x00, 0x58,0x00]
|
|
|
- let startArray = [0x00,0x58,0x00]
|
|
|
- //包长度 固件类型到前一位 0x00,0x58 0x00
|
|
|
- //crc 包长度到crc前一位
|
|
|
- //升级包大小
|
|
|
- startArray = startArray.concat(decimalToHexBytes(subPackage.size,4))
|
|
|
- //软件包id
|
|
|
- startArray = startArray.concat(decimalToHexBytes(subIndex + 1,2))
|
|
|
- //是否为最后一个包
|
|
|
- startArray.push(endPackage)
|
|
|
- //软件数据包
|
|
|
- startArray = startArray.concat(subPackage.groupedArray[subIndex])
|
|
|
- //crc检验
|
|
|
- const crcStr=crc8IEEE8023(startArray)
|
|
|
- startArray.push(crcStr)
|
|
|
- startArray.unshift(0x22,0x22,0x30)
|
|
|
- startArray = startArray.concat([0xAA,0xAA])
|
|
|
- // console.log(startArray)
|
|
|
- return [startArray]
|
|
|
-}
|
|
|
|
|
|
-function arrayBufferToHexWithPrefix(buffer,groupSize = 80) {
|
|
|
- const uint8Array = new Uint8Array(buffer);
|
|
|
- const groupedArray = [];
|
|
|
- const size = uint8Array.length
|
|
|
- // 遍历数据,每 groupSize 个字节为一组
|
|
|
- for (let i = 0; i < size; i += groupSize) {
|
|
|
- const group = Array.from(uint8Array.slice(i, i + groupSize)) // 获取当前分组
|
|
|
- // .map(byte => '0x' + byte.toString(16).padStart(2, 0)); // 添加 0x 前缀
|
|
|
- groupedArray.push(group); // 将分组添加到结果中
|
|
|
- }
|
|
|
-
|
|
|
- return {
|
|
|
- size,
|
|
|
- groupedArray
|
|
|
- };
|
|
|
-}
|
|
|
|
|
|
-//进制转化
|
|
|
-function decimalToHexBytes(decimal,bytes){
|
|
|
- const maxValue = Math.pow(2, 8 * bytes) - 1;
|
|
|
- // 创建一个数组来存储字节
|
|
|
- const byteArray = new Array(bytes);
|
|
|
- // 将十进制数分解为字节
|
|
|
- for (let i = 0; i < bytes; i++) {
|
|
|
- // 每次取最低的8位(一个字节)
|
|
|
- byteArray[bytes - 1 - i] = decimal & 0xff;
|
|
|
- // 右移8位,处理下一个字节
|
|
|
- decimal >>>= 8;
|
|
|
- }
|
|
|
- return byteArray;
|
|
|
-}
|
|
|
|
|
|
module.exports = {
|
|
|
readServiceID: readServiceID,
|
|
@@ -356,12 +336,14 @@ module.exports = {
|
|
|
isDevice: isDevice,
|
|
|
alterConnect: alterConnect,
|
|
|
readData: readData,
|
|
|
- stateUpdate: stateUpdate,
|
|
|
- turnOn: turnOn,
|
|
|
- turnOff: turnOff,
|
|
|
+ turnOffCar: turnOffCar,
|
|
|
isSingleBt: isSingleBt,
|
|
|
haveBms: haveBms,
|
|
|
switchFactory: switchFactory,
|
|
|
- otaUpgrade
|
|
|
+ otaUpgrade,
|
|
|
+ findCarCmd,
|
|
|
+ turnOffCar,
|
|
|
+ turnOnCar,
|
|
|
+ getCarPressure
|
|
|
|
|
|
};
|