From d07d62be7111d78b2aaa44c9cdee23a7d22b4dda Mon Sep 17 00:00:00 2001 From: wei <kaede@kaededeMacBook-Air.local> Date: 星期二, 22 十二月 2020 10:38:15 +0800 Subject: [PATCH] 20201222-1 --- HDL_ON/DAL/DriverLayer/Control.cs | 46 ++++++++++++++++++++++++++++++++++------------ 1 files changed, 34 insertions(+), 12 deletions(-) diff --git a/HDL_ON/DAL/DriverLayer/Control.cs b/HDL_ON/DAL/DriverLayer/Control.cs index 2e8555f..8e434c9 100644 --- a/HDL_ON/DAL/DriverLayer/Control.cs +++ b/HDL_ON/DAL/DriverLayer/Control.cs @@ -178,14 +178,6 @@ } } - ///// <summary> - ///// 鏀瑰彉閫氳鏂瑰紡 - ///// </summary> - //public void ChangeCommunicationMode(CommunicationMode communicationMode) - //{ - // this.communicationMode = communicationMode; - //} - /// <summary> /// 鎼滅储鏈湴缃戝叧鍒楄〃 /// </summary> @@ -233,6 +225,8 @@ //鏈湴鎼滅储涓嶅埌缃戝叧 if (!Ins.IsRemote) { + //杩炴帴mqtt鍓嶏紝鍏堟柇寮�--2020-12-21 + DAL.Mqtt.MqttClient.DisConnectRemote(); Ins.IsRemote = true; DAL.Mqtt.MqttClient.InitState(); } @@ -240,7 +234,6 @@ }) { IsBackground = true }.Start(); } - } /// <summary> @@ -273,6 +266,28 @@ { function.usageCount++; function.refreshTime = DateTime.Now; + + //濡傛灉鏄帶鍒惰皟鍏夌殑寮�鏃讹紝浜害鍊间笉鑳戒负0 + if (commandDictionary.Count > 2) + { + if (commandDictionary.ContainsKey(FunctionAttributeKey.OnOff) && commandDictionary.ContainsKey(FunctionAttributeKey.Brightness)) + { + if (commandDictionary[FunctionAttributeKey.OnOff] == "on") + { + if (commandDictionary[FunctionAttributeKey.Brightness] == "0") + { + commandDictionary[FunctionAttributeKey.Brightness] = "100"; + } + } + if (commandDictionary[FunctionAttributeKey.OnOff] == "off") + { + if (commandDictionary[FunctionAttributeKey.Brightness] != "0") + { + commandDictionary[FunctionAttributeKey.Brightness] = "0"; + } + } + } + } //杩滅▼閫氳 if (Ins.IsRemote) @@ -307,6 +322,7 @@ var functionControlDataJson = Newtonsoft.Json.JsonConvert.SerializeObject(functionControlDataObj); var sendBytes = Ins.ConvertSendBodyData(CommunicationTopic.ct.ControlFunctionTopic, functionControlDataJson); new Control_Udp().SendLocalHdlLinkData(sendBytes, functionControlDataObj.id); + MainPage.Log($"鍙戦�丠DL-Link鏁版嵁:{functionControlDataJson}"); } } } @@ -358,6 +374,7 @@ }; var functionControlDataJson = Newtonsoft.Json.JsonConvert.SerializeObject(readDataObj); var sendBytes = Ins.ConvertSendBodyData(CommunicationTopic.ct.ReadStatus, functionControlDataJson); + MainPage.Log($"鍙戦�丠DL-Link鏁版嵁:{functionControlDataJson}"); new Control_Udp().SendLocalHdlLinkData(sendBytes, readDataObj.id); } } @@ -418,7 +435,7 @@ string sendDataString = topicString + lengthString + bodyDataString; byte[] sendDataBytes = Encoding.ASCII.GetBytes(sendDataString); - MainPage.Log($"杞崲HDL-Link鏁版嵁\r\n{sendDataString}\r\n"); + //MainPage.Log($"杞崲HDL-Link鏁版嵁\r\n{sendDataString}\r\n"); return sendDataBytes; } @@ -458,6 +475,10 @@ break; } } + + MainPage.Log($"time 1 :{receiveObj.Topic}"); + + //楠岃瘉鏈夋晥鏁版嵁闀垮害 //if (res[1].Length != receiveObj.Length) //{ @@ -492,6 +513,7 @@ } } else if (receiveObj.Topic == CommunicationTopic.ct.ReadStatus + "_reply" || + receiveObj.Topic == CommunicationTopic.ct.ControlFunctionTopic + "_reply" || receiveObj.Topic == CommunicationTopic.ct.GatewayUpStatus) { //TODO 鏆傛椂涓嶄紶姝g‘鐨勬暟鎹笂鍘伙紝濡傛灉鍚庨潰瑕佷紭鍖栧墠闈㈣繖浜涗唬鐮� @@ -547,7 +569,7 @@ localAttr.curValue = attr.value; } } - MainPage.Log($"{localSwitch.trait_on_off.curValue}: "); + //rgb.lastState = Language.StringByID(StringId.Brightness) + " : " + rgb.brightness + "%"; RelayPage.UpdataState(localSwitch); } break; @@ -618,7 +640,7 @@ } } lightCCT.lastState = Language.StringByID(StringId.Brightness) + " : " + lightCCT.brightness + "%"; - DimmerPage.UpdataStates(lightCCT); + ColorTureLampPage.UpdataStates(lightCCT); } break; case SPK.CurtainSwitch: -- Gitblit v1.8.0