From 6d3ba9484472d090532434e53667c096652149ce Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期五, 25 九月 2020 09:56:14 +0800
Subject: [PATCH] 202009251

---
 HDL_ON/DriverLayer/Control.cs |   71 ++++++++++++++++++++++++++---------
 1 files changed, 53 insertions(+), 18 deletions(-)

diff --git a/HDL_ON/DriverLayer/Control.cs b/HDL_ON/DriverLayer/Control.cs
index f27acb1..4fca49b 100644
--- a/HDL_ON/DriverLayer/Control.cs
+++ b/HDL_ON/DriverLayer/Control.cs
@@ -126,7 +126,7 @@
                             });
                         break;
                     case FunctionType.AC:
-                        var aC = function as AC;
+                        var aC = Newtonsoft.Json.JsonConvert.DeserializeObject<AC>(Newtonsoft.Json.JsonConvert.SerializeObject(function));//as AC;
                         ControlBytesSend(Command.InstructionPanelKey, aC.bus_Data.SubnetID, aC.bus_Data.DeviceID, new byte[] { 3, aC.trait_on_off.value.ToString() == "on" ? (byte)1 : (byte)0, aC.bus_Data.LoopID });
                         ControlBytesSend(Command.InstructionPanelKey, aC.bus_Data.SubnetID, aC.bus_Data.DeviceID, new byte[] { 6, aC.curModeIndex, aC.bus_Data.LoopID });
                         ControlBytesSend(Command.InstructionPanelKey, aC.bus_Data.SubnetID, aC.bus_Data.DeviceID, new byte[] { 5, aC.curFanIndex, aC.bus_Data.LoopID });
@@ -174,10 +174,11 @@
                         //    });
                         break;
                     case FunctionType.FloorHeating:
-                        var fh = function as FloorHeating;
-                        if (fh.modeTemp.Count == 4)
+                        var fh = Newtonsoft.Json.JsonConvert.DeserializeObject<FloorHeating>(Newtonsoft.Json.JsonConvert.SerializeObject(function));//as AC;
+                        var fhModeTempTrait = function.function.Find((obj) => obj.name == "mode");
+                        if (fhModeTempTrait.value_key.Count == 4)
                         {
-                            byte b1 = fh.trait_on_off.value.ToString() == "on" ? (byte)1 : (byte)0;
+                            byte b1 = function.trait_on_off.value.ToString() == "on" ? (byte)1 : (byte)0;
                             if (fh.workMode > 0)
                             {
                                 b1 += (byte)(16 + fh.workMode);
@@ -186,8 +187,8 @@
                         }
                         break;
                     case FunctionType.Socket:
-                        var s = function as SwitchSocket;
-                        ControlBytesSend(Command.SetSingleLight, function.bus_Data.SubnetID, function.bus_Data.DeviceID, new byte[] { s.bus_Data.LoopID, s.trait_on_off.value.ToString() == "on" ? (byte)100 : (byte)0 });
+                        //var s = function as SwitchSocket;
+                        ControlBytesSend(Command.SetSingleLight, function.bus_Data.SubnetID, function.bus_Data.DeviceID, new byte[] { function.bus_Data.LoopID, function.trait_on_off.value.ToString() == "on" ? (byte)100 : (byte)0 });
                         break;
                 }
             }
@@ -239,7 +240,7 @@
                                 }
                                 var bytes = new byte[] { function.bus_Data.LoopID,
                                             b,
-                                            254, 0,0,3,
+                                            254, 0,Convert.ToByte(light.fadeTime) ,3,
                                             (byte)light.redColor,(byte)light.greenColor,
                                             (byte)light.blueColor,
                                             0,0};
@@ -259,9 +260,11 @@
                                             function.bus_Data.LoopID,
                                             b1,
                                             0, Convert.ToByte(light.fadeTime) });
+                                            DimmerPage.UpdataStates(light);
                                 break;
                             case FunctionType.Relay:
                                 ControlBytesSend(Command.SetSingleLight, subnetId, deviceId, new byte[] { function.bus_Data.LoopID, light.trait_on_off.value.ToString() == "on" ? (byte)100 : (byte)0, 0, 0 });
+                                            RelayPage.UpdataState(light);
                                 break;
                         }
                         break;
@@ -287,18 +290,33 @@
                                 break;
                             case FunctionType.MotorCurtain:
                             case FunctionType.RollingShutter:
+                                //if (commandDictionary.Count > 0)
+                                //{
                                 if (curtain.trait_on_off.value.ToString() == "stop")
                                 {
                                     ControlBytesSend(Command.SetCurtainModelStutas, subnetId, deviceId, new byte[] { curtain.bus_Data.LoopID, 0 });
                                 }
-                                else if (curtain.trait_on_off.value.ToString() == "on")
+                                else
                                 {
-                                    ControlBytesSend(Command.SetCurtainModelStutas, subnetId, deviceId, new byte[] { 17, 100 });
+                                    ControlBytesSend(Command.SetCurtainModelStutas, subnetId, deviceId, new byte[] { 17, Convert.ToByte(curtain.percent) });
+
                                 }
-                                else if (curtain.trait_on_off.value.ToString() == "off")
-                                {
-                                    ControlBytesSend(Command.SetCurtainModelStutas, subnetId, deviceId, new byte[] { 17, 0 });
-                                }
+                                //}
+                                //else
+                                //{
+                                //    if (curtain.trait_on_off.value.ToString() == "stop")
+                                //    {
+                                //        ControlBytesSend(Command.SetCurtainModelStutas, subnetId, deviceId, new byte[] { curtain.bus_Data.LoopID, 0 });
+                                //    }
+                                //    else if (curtain.trait_on_off.value.ToString() == "on")
+                                //    {
+                                //        ControlBytesSend(Command.SetCurtainModelStutas, subnetId, deviceId, new byte[] { 17, 100 });
+                                //    }
+                                //    else if (curtain.trait_on_off.value.ToString() == "off")
+                                //    {
+                                //        ControlBytesSend(Command.SetCurtainModelStutas, subnetId, deviceId, new byte[] { 17, 0 });
+                                //    }
+                                //}
                                 break;
                         }
                         break;
@@ -307,7 +325,7 @@
                         {
                             case FunctionType.AC:
                                 var aC = function as AC;
-                                ControlBytesSend(Command.SetACMode, subnetId, deviceId, new byte[] { aC.bus_Data.LoopID, (byte)aC.curTempType, 32, 32, 32, 32, 32, 0, aC.trait_on_off.value.ToString() == "on" ? (byte)1 : (byte)0, aC.curModeIndex, aC.curFanIndex, (byte)aC.trait_temp.value, 0 });
+                                ControlBytesSend(Command.SetACMode, subnetId, deviceId, new byte[] { aC.bus_Data.LoopID, (byte)aC.curTempType, 32, 32, 32, 32, 32, 0, aC.trait_on_off.value.ToString() == "on" ? (byte)1 : (byte)0, aC.curModeIndex, aC.curFanIndex, Convert.ToByte(aC.trait_temp.value), 0 });
                                 //ControlBytesSend(Command.InstructionPanelKey, aC.bus_Data.SubnetID, aC.bus_Data.DeviceID, new byte[] { 3, aC.on_off == "on" ? (byte)1 : (byte)0, aC.bus_Data.LoopID });
                                 foreach (var dic in commandDictionary)
                                 {
@@ -360,12 +378,29 @@
                                     {
                                         b1 += (byte)(16 + fh.workMode);
                                     }
+                                    if (commandDictionary.ContainsKey("temp"))
+                                    {
+                                        var dicTempString = "";
+                                        commandDictionary.TryGetValue("temp", out dicTempString);
+                                        var dicTemp = Convert.ToByte(dicTempString);
+                                        switch (fh.trait_mode.value)
+                                        {
+                                            case "day":
+                                                fh.modeTemp["day"] = dicTemp;
+                                                break;
+                                            case "night":
+                                                fh.modeTemp["night"] = dicTemp;
+                                                break;
+                                            case "away":
+                                                fh.modeTemp["away"] = dicTemp;
+                                                break;
+                                            case "normal":
+                                                fh.modeTemp["normal"] = dicTemp;
+                                                break;
+                                        }
+                                    }
                                     ControlBytesSend(Command.SetFloorHeat, subnetId, deviceId, new byte[] { fh.bus_Data.LoopID, b1, (byte)fh.curTempType, fh.curModeIndex, fh.modeTemp["normal"], fh.modeTemp["day"], fh.modeTemp["night"], fh.modeTemp["away"], 0, 0 });
                                 }
-                                //else
-                                //{
-                                //    ControlBytesSend(Command.ReadFloorHeat, subnetId,deviceId,new byte[] { fh.bus_Data.LoopID});
-                                //}
                                 break;
                         }
                         break;

--
Gitblit v1.8.0