|
@@ -1,6 +1,7 @@
|
|
|
const common = require('../common.js');
|
|
|
|
|
|
const FMBMS = require('./FMBMS.js');
|
|
|
+var bluetooth = require('@/common/bluetooth.js');
|
|
|
|
|
|
const readServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
|
|
|
const readID = '000036F6-0000-1000-8000-00805F9B34FB';
|
|
@@ -11,6 +12,9 @@ const app = getApp();
|
|
|
let subIndex = -1
|
|
|
let commands = []; // 升级包指令数组,每个指令是一个 ArrayBuffer
|
|
|
let currentCommandIndex = 1;
|
|
|
+var totalLength = 0 //总包长度
|
|
|
+var joinPack = []//接收到的数据包
|
|
|
+var readRepeatTime = 0 //读到完整数据包的时间戳
|
|
|
|
|
|
function acceptDevice(device) {
|
|
|
return device.btid ? true : false;
|
|
@@ -52,6 +56,7 @@ function isDevice(device, data) {
|
|
|
}
|
|
|
|
|
|
function alterConnect(device, deviceId) {
|
|
|
+ readRepeatTime=0
|
|
|
// 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]]
|
|
@@ -104,46 +109,83 @@ function stringToHexArray(str) {
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
//收到硬件方向软件方发送的数据
|
|
|
function readData(device, value, data) {
|
|
|
// console.log(value, 'test1111');
|
|
|
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;
|
|
|
+ const bmsData=Array.from(test);
|
|
|
+ const normalArray =packBmsData(bmsData)
|
|
|
+
|
|
|
+ if(normalArray){
|
|
|
+ console.log(normalArray[2],'normalArray---------------');
|
|
|
+ switch(normalArray[2]){
|
|
|
+ case 0x60:
|
|
|
+ //登陆指令
|
|
|
+ loginCmd(device.mac_id,normalArray)
|
|
|
+ break;
|
|
|
+
|
|
|
+ case 0x61||0x62||0x65:
|
|
|
+ //开机指令
|
|
|
+ trunCarCommand(device.mac_id,normalArray)
|
|
|
+ break;
|
|
|
+
|
|
|
+ case 0x66:
|
|
|
+ //升级指令
|
|
|
+ checkSendNextCommand(device.mac_id,normalArray)
|
|
|
+ break;
|
|
|
+
|
|
|
+ case 0x7C:
|
|
|
+ //接近解锁指令
|
|
|
+ nearCarCmd(device.mac_id,normalArray)
|
|
|
+ break;
|
|
|
+ case 0x7E:
|
|
|
+ //升级指令
|
|
|
+ getNearCarCmdInfo(device.mac_id,normalArray)
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
- switch(normalArray[3]){
|
|
|
- case 0x00:
|
|
|
- sendNextCommand(device.mac_id)
|
|
|
- break;
|
|
|
-
|
|
|
|
|
|
- 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;
|
|
|
- }
|
|
|
+ // 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 {}
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // return [1,1,2,3]
|
|
|
+ // break;
|
|
|
+ // }
|
|
|
+ // }else if(normalArray[0]==0x00&&normalArray.length==1){
|
|
|
+ // // common.simpleToast('开机成功', 2000)
|
|
|
+ // return '操作成功'
|
|
|
+ // }else{
|
|
|
+ // switch(normalArray[3]){
|
|
|
+ // case 0x00:
|
|
|
+ // sendNextCommand(device.mac_id)
|
|
|
+ // break;
|
|
|
+
|
|
|
+
|
|
|
+ // 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;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -154,9 +196,127 @@ function readData(device, value, data) {
|
|
|
return data;
|
|
|
}
|
|
|
|
|
|
+function loginCmd(mac_id,data){
|
|
|
+ const len=data.length-4
|
|
|
+ if(data[len-1]==0x00 && data[len]==0x01){
|
|
|
+ uni.showModal({
|
|
|
+ title: '提示',
|
|
|
+ confirmText: '开始升级',
|
|
|
+ content: '登陆成功,当前处于升级模式是否开始升级',
|
|
|
+ success: function(res) {
|
|
|
+ if (res.confirm) {
|
|
|
+ currentCommandIndex=0
|
|
|
+ otaUpgrade().then(()=>{
|
|
|
+ //登陆成功 且当前为升级模式可以发送升级文件
|
|
|
+ sendNextCommand(device.mac_id)
|
|
|
+ })
|
|
|
+ } else {}
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }else if(data[4]==0x00 && data[4]==0x00){
|
|
|
+ // uni.hideLoading();
|
|
|
+ //正常模式
|
|
|
+ console.log('登陆成功');
|
|
|
+ if('lockType' in app.globalData.nearLockInfo ){
|
|
|
+ if(app.globalData.nearLockInfo.lockType==0){
|
|
|
+ console.log('获取接近解锁指令为关闭');
|
|
|
+
|
|
|
+ }else{
|
|
|
+ uni.hideLoading();
|
|
|
+ console.log('获取接近解锁指令为成功');
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ const getNearUnlockSetCmd=getNearUnlockSet()
|
|
|
+ console.log(getNearUnlockSetCmd,'getNearUnlockSetCmd');
|
|
|
+ writeData(mac_id,getNearUnlockSetCmd)
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+function checkSendNextCommand(mac_id,data){
|
|
|
+ const len=data.length-4
|
|
|
+ if(data[len]==0x00){
|
|
|
+ sendNextCommand(device.mac_id)
|
|
|
+ }else if(data[len]==0x01){
|
|
|
+ uni.hideLoading();
|
|
|
+ // console.log(normalArray,commands.length,currentCommandIndex-1,commands[currentCommandIndex-3],commands[currentCommandIndex-2],commands[currentCommandIndex-1], 'value**************************');
|
|
|
+ common.simpleToast('升级文件回复失败')
|
|
|
+ }
|
|
|
+}
|
|
|
+function trunCarCommand(mac_id,data){
|
|
|
+ uni.hideLoading();
|
|
|
+ const len=data.length-4
|
|
|
+ if(data[len]==0x00){
|
|
|
+ common.simpleToast('操作成功')
|
|
|
+ }else if(data[len]==0x01){
|
|
|
+ common.simpleToast('操作失败')
|
|
|
+ }
|
|
|
+}
|
|
|
+function nearCarCmd(mac_id,data){
|
|
|
+ uni.hideLoading();
|
|
|
+ const len=data.length-4
|
|
|
+ if(data[len]==0x00){
|
|
|
+ common.simpleToast('操作成功')
|
|
|
+ }else if(data[len]==0x01){
|
|
|
+ common.simpleToast('操作失败')
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+//处理蓝牙三段回复 综合成一个数组
|
|
|
+function packBmsData(value) {
|
|
|
+ if (value.length!=0) {
|
|
|
+ console.log(endTime - readRepeatTime);
|
|
|
+ if (endTime - readRepeatTime > 8000) {//超过8秒,说明数据有问题,数据清空
|
|
|
+ readRepeatTime = endTime
|
|
|
+ joinPack = []
|
|
|
+ }
|
|
|
+ // console.log((value[0] == 0x22) && (value[1]== 0x22),joinPack,'000000');
|
|
|
+ if((value[0] == 0x22) && (value[1]== 0x22)){//当开始符为标志符 代表接收包开始
|
|
|
+ var endTime = new Date().getTime()
|
|
|
+ totalLength = value[3]//包长度
|
|
|
+ joinPack=value
|
|
|
+ // console.log(joinPack,value,'111111');
|
|
|
+ }else if(joinPack.length!=0 && (joinPack[0] == 0x22) && (joinPack[1]== 0x22)){
|
|
|
+ const len=joinPack.length-1
|
|
|
+ const diffJoinLength =joinPack.length-4
|
|
|
+ readRepeatTime = endTime
|
|
|
+ // console.log(totalLength,diffJoinLength,value,'2222222');
|
|
|
+ if(totalLength > diffJoinLength){//内容长度符合为完整包
|
|
|
+ joinPack.push(...value)
|
|
|
+ return joinPack
|
|
|
+ }else if(totalLength <= diffJoinLength){
|
|
|
+ joinPack = []
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ readRepeatTime = endTime
|
|
|
+ joinPack = []
|
|
|
+ return joinPack
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function mergeUint8Array(arr1, arr2) {
|
|
|
+ let len1 = arr1 ? arr1.length : 0;
|
|
|
+ let len2 = arr2.length;
|
|
|
+ let arr = new Uint8Array(len1 + len2);
|
|
|
+
|
|
|
+ for (let i = 0; i < len1; i++) {
|
|
|
+ arr[i] = arr1[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ for (let i = 0; i < len2; i++) {
|
|
|
+ arr[len1 + i] = arr2[i];
|
|
|
+ }
|
|
|
+
|
|
|
+ return arr;
|
|
|
+}
|
|
|
|
|
|
//发送指令封装
|
|
|
function sendCommand(cmd, data = []) {
|
|
|
+ readRepeatTime=0
|
|
|
let cmdData = [0x22, 0x22]
|
|
|
// cmdData.push(cmd)
|
|
|
//协议号 cmd
|
|
@@ -164,9 +324,9 @@ function sendCommand(cmd, data = []) {
|
|
|
const dataLen=parseInt(data.length.toString(16).toUpperCase(), 16)
|
|
|
//信息内容 cmd
|
|
|
//crc校验
|
|
|
- const pData=[dataLen,cmd]
|
|
|
+ const pData=[dataLen,...data]
|
|
|
const crcData='0x'+crc8IEEE8023(pData).toString(16).toUpperCase()
|
|
|
- cmdData.push(cmd,dataLen,cmd,crcData,0xAA, 0xAA)
|
|
|
+ cmdData.push(cmd,dataLen,...data,crcData,0xAA, 0xAA)
|
|
|
// console.log(cmdData,'cmdDatacmdData');
|
|
|
return cmdData
|
|
|
}
|
|
@@ -191,6 +351,52 @@ function openCarTrunk(device, deviceId) {
|
|
|
function getCarPressure(device, deviceId) {
|
|
|
return [sendCommand(0x4A,[0x4A])];
|
|
|
}
|
|
|
+function nearUnlock(device, deviceId) {
|
|
|
+ return [sendCommand(0x4B,[0x02])];
|
|
|
+}
|
|
|
+function nearCloseUnlock(device, deviceId) {
|
|
|
+ return [sendCommand(0x4B,[0x00])];
|
|
|
+}
|
|
|
+function getSensitivity(device, deviceId) {
|
|
|
+ return [sendCommand(0x4F,[0x4F])];
|
|
|
+}
|
|
|
+function setSensitivity(device, deviceId,type) {
|
|
|
+ return [sendCommand(0x4E,['0x4'+type])];
|
|
|
+}
|
|
|
+function setNearUnlock(device, deviceId,type) {
|
|
|
+ return [sendCommand(0x4D,[0x4D])];
|
|
|
+}
|
|
|
+function getNearUnlockSet(device, deviceId,type) {
|
|
|
+ return [sendCommand(0x4D,[0x4D])];
|
|
|
+}
|
|
|
+
|
|
|
+function getNearCarCmdInfo(mac_id,data){
|
|
|
+ const pData={
|
|
|
+ lockType:data[4],//接近解锁配置
|
|
|
+ level:data[5],//感应等级
|
|
|
+ status:data[6]//配对状态
|
|
|
+ }
|
|
|
+ console.log(pData,data,pData.status,'pData');
|
|
|
+ app.globalData.nearLockInfo=pData
|
|
|
+ if(pData.lockType==0x02||pData.lockType==0x01){
|
|
|
+ console.log('已开启配对');
|
|
|
+ common.simpleToast('感应解锁已开启,前往设置灵敏度页面')
|
|
|
+ uni.navigateTo({ url: '/pages/bluetoothUnlock/unlockset' })
|
|
|
+ uni.hideLoading();
|
|
|
+ if( pData.status == 0x01){
|
|
|
+ common.simpleToast('配对成功')
|
|
|
+ return
|
|
|
+ }else if(pData.status==0x00){
|
|
|
+ common.simpleToast('未配对')
|
|
|
+ }
|
|
|
+ }else if(pData.lockType==0x00){
|
|
|
+ console.log('未开启配对')
|
|
|
+ const nearUnlockCmd=nearUnlock()
|
|
|
+ console.log(nearUnlockCmd,'nearUnlockCmd');
|
|
|
+ writeData(mac_id,nearUnlockCmd)
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
|
|
|
function switchFactory(device, deviceId) {
|
|
|
//切换正常,工厂模式指令
|
|
@@ -222,7 +428,8 @@ async function readBinBinarayToCommand() {
|
|
|
}
|
|
|
|
|
|
function sendNextCommand(mac_id) {
|
|
|
- console.log(currentCommandIndex,commands.length,'开始发送指令');
|
|
|
+ readRepeatTime=0
|
|
|
+ // console.log(currentCommandIndex,commands.length,'开始发送指令');
|
|
|
// console.log(commands[currentCommandIndex],'command');
|
|
|
if (currentCommandIndex >= commands.length) {
|
|
|
uni.hideLoading();
|
|
@@ -238,7 +445,7 @@ function sendNextCommand(mac_id) {
|
|
|
if(command.length==0){
|
|
|
return
|
|
|
}
|
|
|
- // 将数据转换为ArrayBuffer类型
|
|
|
+ // // 将数据转换为ArrayBuffer类型
|
|
|
var buffer;
|
|
|
buffer = common.toArrayBuffer(command.shift());
|
|
|
// console.log(command,'command');
|
|
@@ -283,7 +490,8 @@ function makeArr(array) {
|
|
|
const packageLen=parseInt((array[i].length+8).toString(16).toUpperCase(), 16)
|
|
|
|
|
|
// const totalPackageSize=[0x00,0x00,0x01,0xE9,0xD4]
|
|
|
- const totalPackageSize=[0x00,0x00,0x01,0xeb,0xfc]
|
|
|
+ // const totalPackageSize=[0x00,0x00,0x01,0xeb,0xfc]
|
|
|
+ const totalPackageSize=[0x00,0x00,0x01,0xAB,0xFC]
|
|
|
startArray.push(packageLen,...totalPackageSize)
|
|
|
//软件包id
|
|
|
const ids=splitNumber(i) // 0x00,0x01
|
|
@@ -324,6 +532,45 @@ function splitNumber(num) {
|
|
|
return ['0x' + highHex, '0x' + lowHex];
|
|
|
}
|
|
|
|
|
|
+// 定义一个函数,用于向蓝牙设备写入数据
|
|
|
+function writeData(mac_id, data, callback = () => {}, fail = () => {}) {
|
|
|
+ const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == mac_id);
|
|
|
+ if (deviceId == undefined) {
|
|
|
+ return ;
|
|
|
+ }
|
|
|
+ // 如果数据长度为0,则直接返回
|
|
|
+ if (data.length == 0) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 将数据转换为ArrayBuffer类型
|
|
|
+ var buffer;
|
|
|
+ buffer = common.toArrayBuffer(data.shift());
|
|
|
+ // 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
|
|
|
+ uni.writeBLECharacteristicValue({
|
|
|
+ deviceId: deviceId,
|
|
|
+ serviceId: writeServiceID,
|
|
|
+ characteristicId: writeID,
|
|
|
+ value: buffer,
|
|
|
+ // 成功回调函数
|
|
|
+ success(res) {
|
|
|
+ // 如果数据长度为0,则调用回调函数
|
|
|
+ if (data.length == 0) {
|
|
|
+ callback(res);
|
|
|
+ } else {
|
|
|
+ // 否则,延时500毫秒后再次调用writeData函数
|
|
|
+ setTimeout(() => {
|
|
|
+ writeData(device, deviceId, data, callback, fail);
|
|
|
+ }, 500);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 失败回调函数
|
|
|
+ fail(res) {
|
|
|
+ console.log(res);
|
|
|
+ // 调用失败回调函数
|
|
|
+ fail(res);
|
|
|
+ }
|
|
|
+ });
|
|
|
+}
|
|
|
|
|
|
|
|
|
|
|
@@ -346,6 +593,13 @@ module.exports = {
|
|
|
findCarCmd,
|
|
|
turnOffCar,
|
|
|
turnOnCar,
|
|
|
- getCarPressure
|
|
|
+ getCarPressure,
|
|
|
+ nearUnlock,
|
|
|
+ nearCloseUnlock,
|
|
|
+ getSensitivity,
|
|
|
+ setSensitivity,
|
|
|
+ getNearUnlockSet,
|
|
|
+ setNearUnlock,
|
|
|
+
|
|
|
|
|
|
};
|