From e7290281eabcb88d2e430dea9782565474837ce1 Mon Sep 17 00:00:00 2001
From: mac <user@users-MacBook-Pro.local>
Date: 星期五, 20 十月 2023 14:29:54 +0800
Subject: [PATCH] Merge branch 'Dev-Branch' into wjc

---
 HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs |   24 ++++++++++++++++++++----
 1 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs b/HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs
index 34599ea..d47510b 100644
--- a/HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs
+++ b/HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs
@@ -430,12 +430,28 @@
                                         }
                                     }
                                 }
-                                else if(function.spk == SPK.SensorHelp)
+                                else if (function.spk == SPK.SensorHelp)
                                 {
                                     var tempStatus = function.attributes.Find((sta) => sta.key == FunctionAttributeKey.AlarmStatus);
-                                    if(tempStatus != null)
+                                    if (tempStatus != null)
                                     {
                                         state = tempStatus.curValue.ToString() == "alarm";
+                                    }
+                                }
+                                else if (function.spk == SPK.SensorPir || function.spk == SPK.SensorPirHold)
+                                {
+                                    var tempStatus = function.attributes.Find((sta) => sta.key == "people_status");
+                                    if (tempStatus != null)
+                                    {
+                                        state = tempStatus.curValue.ToString() == "true";
+                                    }
+                                }
+                                else if (function.spk == SPK.SensorDryContact || function.spk == SPK.SensorDryContact2)
+                                {
+                                    var tempStatus = function.attributes.Find((sta) => sta.key == "contact_status");
+                                    if (tempStatus != null)
+                                    {
+                                        state = tempStatus.curValue.ToString() == "open";
                                     }
                                 }
                                 else
@@ -682,7 +698,6 @@
                 d.Add(FunctionAttributeKey.OnOff, curtain.trait_on_off.curValue.ToString());
                 Control.Ins.SendWriteCommand(curtain, d);
             };
-
             btnOpen.MouseUpEventHandler = (sender, e) =>
             {
                 //if (!curtain.isOnline())//绂荤嚎涓嶅厑璁告搷浣�
@@ -696,9 +711,10 @@
                 //    return;
                 //}
                 btnOpen.IsSelected = true;
+                Dictionary<string, string> d = new Dictionary<string, string>();
+
                 curtain.trait_on_off.curValue = "on";
                 curtain.SetAttrState(FunctionAttributeKey.Percent, 100);
-                Dictionary<string, string> d = new Dictionary<string, string>();
                 d.Add(FunctionAttributeKey.OnOff, curtain.trait_on_off.curValue.ToString());
                 Control.Ins.SendWriteCommand(curtain, d);
             };

--
Gitblit v1.8.0