From e90209beae6a4e822cecb18e6889f8bda23f630e Mon Sep 17 00:00:00 2001
From: 黄学彪 <hxb@hdlchina.com.cn>
Date: 星期一, 14 十二月 2020 11:16:06 +0800
Subject: [PATCH] 合并了晾衣架(非新云端)

---
 ZigbeeApp/Shared/Phone/MainPage/HomeMainPageForm.cs |   25 +++++++++++++++++++++++--
 1 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/MainPage/HomeMainPageForm.cs b/ZigbeeApp/Shared/Phone/MainPage/HomeMainPageForm.cs
index 549615c..d15dba7 100755
--- a/ZigbeeApp/Shared/Phone/MainPage/HomeMainPageForm.cs
+++ b/ZigbeeApp/Shared/Phone/MainPage/HomeMainPageForm.cs
@@ -630,6 +630,11 @@
                     {
                         cardContr = new Controls.DevicePmSensorCardControl();
                     }
+                    // 鏅捐。鏋� 
+                    else if (device.Type == DeviceType.Airer)
+                    {
+                        cardContr = new Controls.DeviceAirerCardControl();
+                    }
                     //褰╃伅(璋冨厜鍣�)
                     else if (device.Type == DeviceType.DimmableLight)
                     {
@@ -697,6 +702,7 @@
                         }
                         HdlThreadLogic.Current.RunThread(() =>
                         {
+                            int sendCount = 0;
                             while (listDeviceBackContr.Parent != null)
                             {
                                 bool hadSend = false;
@@ -712,7 +718,7 @@
                                         //鍙戦�佽幏鍙栫姸鎬佺殑鍛戒护
                                         listContr[i].SendStatuComand();
                                         hadSend = true;
-                                        System.Threading.Thread.Sleep(200);
+                                        System.Threading.Thread.Sleep(300);
                                     }
                                 }
                                 if (hadSend == false)
@@ -720,7 +726,13 @@
                                     //濡傛灉宸茬粡鍏ㄩ儴鍥炶矾閮芥帴鏀朵簡缃戝叧鍥炲,鍒欎笉鍐嶄簩娆″彂閫�
                                     break;
                                 }
-                                System.Threading.Thread.Sleep(2000);
+                                sendCount++;
+                                if (sendCount == 2)
+                                {
+                                    //灏卞彂2娆�
+                                    break;
+                                }
+                                System.Threading.Thread.Sleep(5000);
                             }
                         }, ShowErrorMode.NO);
                     }
@@ -1114,6 +1126,15 @@
                 {
                     //澶勭悊涓�鑸澶囩殑涓婃姤鏁版嵁
                     string mainKeys = LocalDevice.Current.GetDeviceMainKeys(report);
+
+                    //鏅捐。鏋朵笂鎶ラ渶瑕佺壒娈婂鐞嗭紝鍏朵粬涓婃姤鐨勫洖璺粺涓�杞负绔偣1
+                    var tempList = LocalDevice.Current.GetDevicesByMac(report.DeviceAddr);
+                    var tempDeviceEnum = LocalDevice.Current.GetMyDeviceEnumInfo(tempList);
+                    if (tempDeviceEnum.ConcreteType == Common.DeviceConcreteType.Airer)
+                    {
+                        mainKeys = report.DeviceAddr + "_" + 1;
+                    }
+
                     if (this.dicDeviceCardControl.ContainsKey(mainKeys) == true)
                     {
                         //鍒锋柊鍗$墖淇℃伅

--
Gitblit v1.8.0