|
@@ -94,8 +94,8 @@ function alterConnect(device, deviceId) {
|
|
|
const secondPart = data;
|
|
|
// const threePart = data;
|
|
|
// return [data]
|
|
|
- // return [firstPart,secondPart]
|
|
|
- return [[0x22]]
|
|
|
+ return [firstPart,secondPart]
|
|
|
+ // return [[0x22]]
|
|
|
}
|
|
|
|
|
|
function crc8IEEE8023(data) {
|
|
@@ -443,54 +443,49 @@ function getNearCarCmdInfo(macid,data){
|
|
|
|
|
|
}
|
|
|
function checkUnlock(macid,type='get'){
|
|
|
- const app = getApp();
|
|
|
- let deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
- let device = app.globalData.connectionState[deviceId]
|
|
|
- console.log(app.globalData.connectionState,'app.globalData.connectionState1111');
|
|
|
- console.log(device,'device------------');
|
|
|
- permision.getBondedDevices(deviceId).then(res=>{
|
|
|
- if(res){
|
|
|
+ console.log('test0000000000000');
|
|
|
+ const res=permision.getBondedDevices()
|
|
|
+ let app=getApp()
|
|
|
+ if(res){
|
|
|
app.globalData.nearLockCheck=true
|
|
|
common.simpleToast('感应解锁已开启,前往设置灵敏度页面')
|
|
|
uni.navigateTo({ url: '/pages/bluetoothUnlock/unlockSet' })
|
|
|
console.log('test');
|
|
|
//redirectTo 关闭当前页面 防止用户重复操作
|
|
|
-
|
|
|
}else{
|
|
|
- if(type==='login'){
|
|
|
- //下发接近解锁指令
|
|
|
- // const nearUnlockCmd=nearUnlock()
|
|
|
- // console.log(nearUnlockCmd,'nearUnlockCmd');
|
|
|
- // setTimeout(() => {
|
|
|
- // writeData(macid,nearUnlockCmd)
|
|
|
- // }, 500);
|
|
|
-
|
|
|
- // 获取接近解锁指令信息
|
|
|
- const getNearUnlockSetCmd=getNearUnlockSet()
|
|
|
- console.log(getNearUnlockSetCmd,'getNearUnlockSetCmd');
|
|
|
- setTimeout(() => {
|
|
|
- writeData(macid,getNearUnlockSetCmd)
|
|
|
- }, 500);
|
|
|
- }else{
|
|
|
- uni.showModal({
|
|
|
- title: '蓝牙配对确认',
|
|
|
- content: '请在系统通知栏前往同意与'+device.deviceName+'设备配对',
|
|
|
- cancelText: '取消',
|
|
|
- confirmText: '已同意',
|
|
|
- success: function(res) {
|
|
|
- if (res.confirm) {
|
|
|
- checkUnlock(macid)
|
|
|
- }else{
|
|
|
- // uni.redirectTo({ url: '/pages/index/index' })
|
|
|
- }
|
|
|
- },
|
|
|
- fail: function(res) {},
|
|
|
- complete: function(res) {},
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
- })
|
|
|
+ if(type==='login'){
|
|
|
+ //下发接近解锁指令
|
|
|
+ // const nearUnlockCmd=nearUnlock()
|
|
|
+ // console.log(nearUnlockCmd,'nearUnlockCmd');
|
|
|
+ // setTimeout(() => {
|
|
|
+ // writeData(macid,nearUnlockCmd)
|
|
|
+ // }, 500);
|
|
|
+
|
|
|
+ // 获取接近解锁指令信息
|
|
|
+ const getNearUnlockSetCmd=getNearUnlockSet()
|
|
|
+ console.log(getNearUnlockSetCmd,'getNearUnlockSetCmd');
|
|
|
+ setTimeout(() => {
|
|
|
+ writeData(macid,getNearUnlockSetCmd)
|
|
|
+ }, 200);
|
|
|
+ }else{
|
|
|
+ // uni.showModal({
|
|
|
+ // title: '蓝牙配对确认',
|
|
|
+ // content: '请在系统通知栏前往同意与'+macid+'设备配对',
|
|
|
+ // cancelText: '取消',
|
|
|
+ // confirmText: '已同意',
|
|
|
+ // success: function(res) {
|
|
|
+ // if (res.confirm) {
|
|
|
+ // checkUnlock(macid)
|
|
|
+ // }else{
|
|
|
+ // // uni.redirectTo({ url: '/pages/index/index' })
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // fail: function(res) {},
|
|
|
+ // complete: function(res) {},
|
|
|
+ // })
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|
|
@@ -633,8 +628,9 @@ function splitNumber(num) {
|
|
|
// 定义一个函数,用于向蓝牙设备写入数据
|
|
|
function writeData(mac_id, data, callback = () => {}, fail = () => {}) {
|
|
|
const app = getApp();
|
|
|
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == mac_id);
|
|
|
- if (deviceId == undefined) {
|
|
|
+ const deviceIds = app.globalData.connectionState[mac_id].deviceId
|
|
|
+ console.log(deviceIds,'deviceIds');
|
|
|
+ if (deviceIds == undefined) {
|
|
|
return ;
|
|
|
}
|
|
|
// 如果数据长度为0,则直接返回
|
|
@@ -646,7 +642,7 @@ function writeData(mac_id, data, callback = () => {}, fail = () => {}) {
|
|
|
buffer = common.toArrayBuffer(data.shift());
|
|
|
// 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
|
|
|
uni.writeBLECharacteristicValue({
|
|
|
- deviceId: deviceId,
|
|
|
+ deviceId: deviceIds,
|
|
|
serviceId: writeServiceID,
|
|
|
characteristicId: writeID,
|
|
|
value: buffer,
|
|
@@ -658,7 +654,7 @@ function writeData(mac_id, data, callback = () => {}, fail = () => {}) {
|
|
|
} else {
|
|
|
// 否则,延时500毫秒后再次调用writeData函数
|
|
|
setTimeout(() => {
|
|
|
- writeData(device, deviceId, data, callback, fail);
|
|
|
+ writeData(device, data, callback, fail);
|
|
|
}, 500);
|
|
|
}
|
|
|
},
|