|
@@ -19,6 +19,7 @@
|
|
<view class="text">使用感应解锁功能时,请务必保证手机蓝牙功能开启,在蓝牙列表中忽略此设备会导致感应解锁失败</view>
|
|
<view class="text">使用感应解锁功能时,请务必保证手机蓝牙功能开启,在蓝牙列表中忽略此设备会导致感应解锁失败</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
+ <view class="pair-btn" style="bottom: 240rpx;" @tap="switchNormal">切换正常 工厂模式</view>
|
|
<view class="pair-btn" style="bottom: 140rpx;" @tap="otaUpgrade">OTA升级</view>
|
|
<view class="pair-btn" style="bottom: 140rpx;" @tap="otaUpgrade">OTA升级</view>
|
|
<view class="pair-btn" @tap="initiateBluetoothPairing">开始配对</view>
|
|
<view class="pair-btn" @tap="initiateBluetoothPairing">开始配对</view>
|
|
<CenterDialog confirmText="配对" ref="centerDialog" />
|
|
<CenterDialog confirmText="配对" ref="centerDialog" />
|
|
@@ -51,6 +52,10 @@
|
|
showNotice: false
|
|
showNotice: false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ created(){
|
|
|
|
+ bluetooth.initBluetooth()
|
|
|
|
+ this.bluetoothClose()
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
async otaUpgrade(){
|
|
async otaUpgrade(){
|
|
this.initiateBluetoothPairing()
|
|
this.initiateBluetoothPairing()
|
|
@@ -65,8 +70,41 @@
|
|
// 想与您配对,请确保显示的配对密钥为
|
|
// 想与您配对,请确保显示的配对密钥为
|
|
// <span style="color:#060809;font-weight:bold">${pairingCode}</span>`
|
|
// <span style="color:#060809;font-weight:bold">${pairingCode}</span>`
|
|
// });
|
|
// });
|
|
|
|
+
|
|
this.loadBluetooth()
|
|
this.loadBluetooth()
|
|
},
|
|
},
|
|
|
|
+ bluetoothClose: function() {
|
|
|
|
+ console.log(11112222);
|
|
|
|
+ bluetooth.closeBluetoothAdapter();
|
|
|
|
+ bluetooth.closeDevice(
|
|
|
|
+ "095A5832",
|
|
|
|
+ () => {
|
|
|
|
+ // this.setData({
|
|
|
|
+ // bt_loading: false
|
|
|
|
+ // });
|
|
|
|
+ },
|
|
|
|
+ () => {}
|
|
|
|
+ );
|
|
|
|
+ bluetooth.offCharacteristicStateChange("095A5832", 'home');
|
|
|
|
+ bluetooth.offConnectionStateChange("095A5832", 'home');
|
|
|
|
+ },
|
|
|
|
+ switchNormal(){
|
|
|
|
+ const me=this
|
|
|
|
+ bluetooth.sendSwitchNormalCommand('900000996', (res) => {
|
|
|
|
+ // uni.hideLoading();
|
|
|
|
+ console.log(res,'sendSwitchNormalCommand 切换正常工厂模式');
|
|
|
|
+ //切换工厂模式以后蓝牙断开 重新连接蓝牙
|
|
|
|
+ console.log(app.globalData,'app.globalData');
|
|
|
|
+ app.globalData.connectionState={}
|
|
|
|
+ me.loadBluetooth()
|
|
|
|
+ // if (!res.connected) {
|
|
|
|
+ // // 蓝牙未连接
|
|
|
|
+ // common.simpleToast('蓝牙连接断开1111', 2000)
|
|
|
|
+ // } else {
|
|
|
|
+ // common.simpleToast('蓝牙连接成功2222', 2000)
|
|
|
|
+ // }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
loadBluetooth() {
|
|
loadBluetooth() {
|
|
const me = this;
|
|
const me = this;
|
|
var device = {
|
|
var device = {
|
|
@@ -76,21 +114,24 @@
|
|
bt_type: "ZXCAR",
|
|
bt_type: "ZXCAR",
|
|
device_type: "ZXCAR"
|
|
device_type: "ZXCAR"
|
|
};
|
|
};
|
|
|
|
+ //bluetooth.acceptDevice(device) 是否是蓝牙类型列表里面的
|
|
if (bluetooth.acceptDevice(device)) {
|
|
if (bluetooth.acceptDevice(device)) {
|
|
// 打开蓝牙连接
|
|
// 打开蓝牙连接
|
|
bluetooth.openBluetoothAdapter((res) => {
|
|
bluetooth.openBluetoothAdapter((res) => {
|
|
common.loading()
|
|
common.loading()
|
|
- bluetooth.connectDevice(device, async () => {
|
|
|
|
- uni.hideLoading()
|
|
|
|
- await bluetooth.sendOTACommand(device.mac_id, 'index', (res) => {
|
|
|
|
- uni.hideLoading();
|
|
|
|
- if (!res.connected) {
|
|
|
|
- // 蓝牙未连接
|
|
|
|
- common.simpleToast('蓝牙连接断开1111', 2000)
|
|
|
|
- } else {
|
|
|
|
- common.simpleToast('蓝牙连接成功2222', 2000)
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
|
|
+ bluetooth.connectDevice(device, () => {
|
|
|
|
+ uni.hideLoading();
|
|
|
|
+
|
|
|
|
+ // uni.hideLoading()
|
|
|
|
+ // await bluetooth.sendOTACommand(device.mac_id, 'index', (res) => {
|
|
|
|
+ // uni.hideLoading();
|
|
|
|
+ // if (!res.connected) {
|
|
|
|
+ // // 蓝牙未连接
|
|
|
|
+ // common.simpleToast('蓝牙连接断开1111', 2000)
|
|
|
|
+ // } else {
|
|
|
|
+ // common.simpleToast('蓝牙连接成功2222', 2000)
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
console.log('test');
|
|
console.log('test');
|
|
// bluetooth.onCharacteristicStateChange(device.mac_id, 'index', (data) => {
|
|
// bluetooth.onCharacteristicStateChange(device.mac_id, 'index', (data) => {
|
|
// console.log(data,'datatest');
|
|
// console.log(data,'datatest');
|
|
@@ -103,15 +144,15 @@
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
// });
|
|
// });
|
|
- // bluetooth.onConnectionStateChange(device.mac_id, 'index', (res) => {
|
|
|
|
- // uni.hideLoading();
|
|
|
|
- // if (!res.connected) {
|
|
|
|
- // // 蓝牙未连接
|
|
|
|
- // common.simpleToast('蓝牙连接断开1111', 2000)
|
|
|
|
- // } else {
|
|
|
|
- // common.simpleToast('蓝牙连接成功2222', 2000)
|
|
|
|
- // }
|
|
|
|
- // });
|
|
|
|
|
|
+ // bluetooth.onConnectionStateChange(device.mac_id, 'index', (res) => {
|
|
|
|
+ // uni.hideLoading();
|
|
|
|
+ // if (!res.connected) {
|
|
|
|
+ // // 蓝牙未连接
|
|
|
|
+ // common.simpleToast('蓝牙连接断开1111', 2000)
|
|
|
|
+ // } else {
|
|
|
|
+ // common.simpleToast('蓝牙连接成功2222', 2000)
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
// bluetooth.sendGetCabinetInfoCommand(
|
|
// bluetooth.sendGetCabinetInfoCommand(
|
|
// device.mac_id,
|
|
// device.mac_id,
|
|
// device,
|
|
// device,
|
|
@@ -134,53 +175,56 @@
|
|
|
|
|
|
},
|
|
},
|
|
(res) => {
|
|
(res) => {
|
|
|
|
+ console.log('观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限');
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
- var showContent = ""
|
|
|
|
- if (res && ("errCode" in res)) {
|
|
|
|
- if (res.errCode == 9000001) {
|
|
|
|
- var showContent = "观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限!!"
|
|
|
|
- } else {
|
|
|
|
- var showContent = "连接失败,请尝试重新连接44444"
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- var showContent = "连接失败,请尝试重新连接55555"
|
|
|
|
- }
|
|
|
|
- uni.showModal({
|
|
|
|
- title: '提示',
|
|
|
|
- confirmText: '重新连接',
|
|
|
|
- content: showContent,
|
|
|
|
- success: function(res) {
|
|
|
|
- if (res.confirm) {
|
|
|
|
- me.loadBluetooth();
|
|
|
|
- } else {}
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
|
|
+ // var showContent = ""
|
|
|
|
+ // if (res && ("errCode" in res)) {
|
|
|
|
+ // if (res.errCode == 9000001) {
|
|
|
|
+ // var showContent = "观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限!!"
|
|
|
|
+ // } else {
|
|
|
|
+ // var showContent = "连接失败,请尝试重新连接44444"
|
|
|
|
+ // }
|
|
|
|
+ // } else {
|
|
|
|
+ // var showContent = "连接失败,请尝试重新连接55555"
|
|
|
|
+ // }
|
|
|
|
+ // uni.showModal({
|
|
|
|
+ // title: '提示',
|
|
|
|
+ // confirmText: '重新连接',
|
|
|
|
+ // content: showContent,
|
|
|
|
+ // success: function(res) {
|
|
|
|
+ // if (res.confirm) {
|
|
|
|
+ // me.loadBluetooth();
|
|
|
|
+ // } else {}
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
},
|
|
},
|
|
(res) => {
|
|
(res) => {
|
|
|
|
+ console.log('蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666');
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
- uni.showModal({
|
|
|
|
- title: '提示',
|
|
|
|
- confirmText: '我知道了',
|
|
|
|
- content: '蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666',
|
|
|
|
- success: function(res) {
|
|
|
|
- if (res.confirm) {
|
|
|
|
- me.loadBluetooth();
|
|
|
|
- } else {}
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
|
|
+ // uni.showModal({
|
|
|
|
+ // title: '提示',
|
|
|
|
+ // confirmText: '我知道了',
|
|
|
|
+ // content: '蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666',
|
|
|
|
+ // success: function(res) {
|
|
|
|
+ // if (res.confirm) {
|
|
|
|
+ // me.loadBluetooth();
|
|
|
|
+ // } else {}
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
}
|
|
}
|
|
);
|
|
);
|
|
}, );
|
|
}, );
|
|
} else {
|
|
} else {
|
|
//蓝牙连接未成功
|
|
//蓝牙连接未成功
|
|
|
|
+ console.log('当前机柜未找到符合的蓝牙类型');
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
- uni.showModal({
|
|
|
|
- confirmText: '我知道了',
|
|
|
|
- content: '当前机柜未找到符合的蓝牙类型',
|
|
|
|
- showCancel: false,
|
|
|
|
- title: '提示',
|
|
|
|
- complete: (res) => {}
|
|
|
|
- });
|
|
|
|
|
|
+ // uni.showModal({
|
|
|
|
+ // confirmText: '我知道了',
|
|
|
|
+ // content: '当前机柜未找到符合的蓝牙类型',
|
|
|
|
+ // showCancel: false,
|
|
|
|
+ // title: '提示',
|
|
|
|
+ // complete: (res) => {}
|
|
|
|
+ // });
|
|
}
|
|
}
|
|
},
|
|
},
|
|
reportCabintInfo(dev_id, list){
|
|
reportCabintInfo(dev_id, list){
|