|
@@ -236,25 +236,61 @@ Page({
|
|
|
lamp: {...this.data.lamp, bgc: newBgC}
|
|
|
})
|
|
|
},
|
|
|
-
|
|
|
+ initPageInfo(){
|
|
|
+ this.setData({
|
|
|
+ ble: {...this.data.ble,
|
|
|
+ state: connectStateTypes.unConnect,
|
|
|
+ init: false,
|
|
|
+ devName: "",
|
|
|
+ deviceId: "",
|
|
|
+ },
|
|
|
+ bleDevs: [],
|
|
|
+ });
|
|
|
+ bleServices = [];
|
|
|
+ // 灯光信息初始化
|
|
|
+ this.setData({
|
|
|
+ lamp: {
|
|
|
+ // 开关状态
|
|
|
+ switch: false,
|
|
|
+ // 全开状态(无色温调节)
|
|
|
+ fullOpen: false,
|
|
|
+ // 亮度
|
|
|
+ brightness: 50,
|
|
|
+ // 色温
|
|
|
+ colorTemperature: MAX_COLOR_TEMPERATURE,
|
|
|
+ // 色彩
|
|
|
+ bgc: "#3b3b3b"
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 连接失败
|
|
|
bleFail(title,msg){
|
|
|
wx.showModal({
|
|
|
title: title,
|
|
|
content: msg,
|
|
|
- success (res) {
|
|
|
- this.setData({
|
|
|
- ble: {...this.data.ble,
|
|
|
- state: connectStateTypes.unConnect,
|
|
|
- init: false,
|
|
|
- devName: "",
|
|
|
- deviceId: "",
|
|
|
- },
|
|
|
- bleDevs: []
|
|
|
- });
|
|
|
- bleServices = [];
|
|
|
+ success: (res) =>{
|
|
|
+ this.initPageInfo();
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+
|
|
|
+ disconnectHandle(){
|
|
|
+ this.excuteDisconnect();
|
|
|
+ },
|
|
|
+
|
|
|
+ async excuteDisconnect(){
|
|
|
+ console.log('断开连接');
|
|
|
+ if(this.data.ble.state !== connectStateTypes.connected){
|
|
|
+ return this.bleFail('断开连接失败', '当前未连接设备');
|
|
|
+ }
|
|
|
+ let err,res;
|
|
|
+ [err,res] = await handle(ble.disconnectDev(this.data.ble.deviceId));
|
|
|
+ if(err){
|
|
|
+ return this.bleFail('断开连接失败', err.errMsg);
|
|
|
+ }
|
|
|
+ wx.showToast({title: `断开连接成功`, })
|
|
|
+ this.initPageInfo();
|
|
|
+ },
|
|
|
// 蓝牙控制板块
|
|
|
searchDeviceHandle() {
|
|
|
// 开始搜索设备
|