|
@@ -49,6 +49,7 @@ function isDevice(device, data) {
|
|
|
// }
|
|
|
//判断是否是智寻的蓝牙
|
|
|
const result = data.name.startsWith("ZX");
|
|
|
+ // const result = data.name.startsWith("ZN");
|
|
|
// if (data.name === "865416038002201") {
|
|
|
// if (data.name === "ZX2503150000000") {
|
|
|
if (result) {
|
|
@@ -73,6 +74,10 @@ function alterConnect(device, deviceId) {
|
|
|
let data=[ 0x1F, 0x0F]
|
|
|
const device_name=app.globalData.connectionState[deviceId].deviceName
|
|
|
const device_sn=stringToHexArray(device_name)
|
|
|
+
|
|
|
+ // const car_info = uni.getStorageSync('car_info')
|
|
|
+ // const device_sn=stringToHexArray(car_info.car_sn)
|
|
|
+ // const device_sn=stringToHexArray('865416038001109')
|
|
|
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]
|
|
@@ -400,8 +405,10 @@ function getNearUnlockSet(device, deviceId,type) {
|
|
|
}
|
|
|
|
|
|
function getNearCarCmdInfo(macid,data){
|
|
|
+ console.log('getNearCarCmdInfo',macid,data);
|
|
|
+
|
|
|
|
|
|
- if(pData.lockType==0x02||pData.lockType==0x01){
|
|
|
+ if(data[5]==0x02||data[5]==0x01){
|
|
|
uni.hideLoading();
|
|
|
const pData={
|
|
|
lockType:data[4],//接近解锁配置
|
|
@@ -450,7 +457,9 @@ function checkUnlock(macid,type='get'){
|
|
|
// 获取接近解锁指令信息
|
|
|
const getNearUnlockSetCmd=getNearUnlockSet()
|
|
|
console.log(getNearUnlockSetCmd,'getNearUnlockSetCmd');
|
|
|
- writeData(mac_id,getNearUnlockSetCmd)
|
|
|
+ setTimeout(() => {
|
|
|
+ writeData(macid,getNearUnlockSetCmd)
|
|
|
+ }, 500);
|
|
|
}else{
|
|
|
uni.showModal({
|
|
|
title: '蓝牙配对确认',
|