From f9de7b8e7a567d71e336965117dd9ceb22be07c0 Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期三, 10 三月 2021 16:16:57 +0800
Subject: [PATCH] 2021-03-10 1.更新

---
 HDL_ON/UI/UI2/FuntionControlView/Electrical/FanPageBLL.cs |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/Electrical/FanPageBLL.cs b/HDL_ON/UI/UI2/FuntionControlView/Electrical/FanPageBLL.cs
old mode 100755
new mode 100644
index 7785217..f6bf791
--- a/HDL_ON/UI/UI2/FuntionControlView/Electrical/FanPageBLL.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/Electrical/FanPageBLL.cs
@@ -51,7 +51,7 @@
         {
             btnCollection.MouseUpEventHandler += (sender, e) => {
                 btnCollection.IsSelected = fan.collect = btnCollection_Out.IsSelected = !btnCollection.IsSelected;
-                fan.SaveFunctionData(true);
+                fan.CollectFunction();
             };
         }
 
@@ -70,6 +70,7 @@
                     //Control.Send(CommandType_A.write, this.fan);
                     System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
                     d.Add("on_off", fan.trait_on_off.curValue.ToString());
+                    d.Add("fan_speed_percent", fan.openLevel.ToString());
                     Control.Ins.SendWriteCommand(fan, d);
                 })
                 { IsBackground = true }.Start();
@@ -84,6 +85,7 @@
                     //Control.Send(CommandType_A.write, this.fan);
                     System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
                     d.Add("on_off", fan.trait_on_off.curValue.ToString());
+                    d.Add("fan_speed_percent", fan.openLevel.ToString());
                     Control.Ins.SendWriteCommand(fan, d);
                 })
                 { IsBackground = true }.Start();
@@ -97,6 +99,7 @@
                     //Control.Send(CommandType_A.write, this.fan);
                     System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
                     d.Add("on_off", fan.trait_on_off.curValue.ToString());
+                    d.Add("fan_speed_percent", fan.openLevel.ToString());
                     Control.Ins.SendWriteCommand(fan, d);
                 })
                 { IsBackground = true }.Start();

--
Gitblit v1.8.0