From 5a5a2b696866f947b6025d26c3302e8ffef46435 Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期一, 11 一月 2021 16:11:20 +0800
Subject: [PATCH] 2021-01-11 1.更新MQTT连接和本地搜索网关方法。2.子账号相关接口完善

---
 Crabtree/SmartHome/UI/SimpleControl/Phone/Fan/UserDeviceToFan.cs |   94 +++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 91 insertions(+), 3 deletions(-)

diff --git a/Crabtree/SmartHome/UI/SimpleControl/Phone/Fan/UserDeviceToFan.cs b/Crabtree/SmartHome/UI/SimpleControl/Phone/Fan/UserDeviceToFan.cs
index d5bac9c..fe07496 100644
--- a/Crabtree/SmartHome/UI/SimpleControl/Phone/Fan/UserDeviceToFan.cs
+++ b/Crabtree/SmartHome/UI/SimpleControl/Phone/Fan/UserDeviceToFan.cs
@@ -92,7 +92,7 @@
             #region 鏄剧ず
             int devcieCount = 0;
             foreach (var room in Room.Lists) {
-                if (string.IsNullOrEmpty(room.Name)) {
+                if (string.IsNullOrEmpty (room.Name)) {
                     continue;
                 }
                 foreach (var common in room.DeviceList) {
@@ -156,7 +156,11 @@
                             //} else {
                             //    fanModule.Switch = 0;
                             //}
+
+                            if (fanModule.WindSpeed == 0) fanModule.WindSpeed = 1;
+
                             int mSetSwitch = tempSiwtch.IsSelected ? 0 : fanModule.WindSpeed;
+
                             System.Threading.Tasks.Task.Run (() => {
                                 byte [] returnBytes = Control.ControlBytesSendHasReturn (Command.SetSingleLight, fanModule.SubnetID, fanModule.DeviceID, new byte [] { fanModule.LoopID, (byte)mSetSwitch });
                                 Application.RunOnMainThread (() => {
@@ -223,7 +227,7 @@
             Application.RunOnMainThread (() => {
                 int brighingCount = 0;
                 foreach (var room in Room.Lists) {
-                    if (string.IsNullOrEmpty(room.Name)) {
+                    if (string.IsNullOrEmpty (room.Name)) {
                         continue;
                     }
                     foreach (var light in room.DeviceList) {
@@ -283,12 +287,15 @@
                     if (string.IsNullOrEmpty (room.Name)) {
                         continue;
                     }
-                   
+
                     foreach (var fanD in room.DeviceList) {
                         //2020-02-10
                         byte [] returnBytes = null;
                         if (fanD.Type == DeviceType.FanModule) {
                             if (open) {
+
+                                if ((fanD as FanModule).WindSpeed == 0) (fanD as FanModule).WindSpeed = 1;
+
                                 returnBytes = Control.ControlBytesSendHasReturn (Command.SetSingleLight, fanD.SubnetID, fanD.DeviceID, new byte [] { fanD.LoopID, (fanD as FanModule).WindSpeed });
                             } else {
                                 returnBytes = Control.ControlBytesSendHasReturn (Command.SetSingleLight, fanD.SubnetID, fanD.DeviceID, new byte [] { fanD.LoopID, 0 });
@@ -331,5 +338,86 @@
                 });
             });
         }
+
+        void ControlAllFanNew (bool open)
+        {
+            if (CommonPage.IsRemote) {
+                if (!SmartHome.MqttCommon.IsGatewayOnline) {
+                    new Alert ("", "Gateway offline" + ErrorCode.ControlFailure, "Close").Show ();
+                    return;
+                }
+            }
+            MainPage.Loading.Start ("Sending...");
+            bool showTip = true;
+            System.Threading.Tasks.Task.Run (() => {
+                int mSendCount = 0;
+
+                foreach (var room in Room.Lists) {
+                    if (room == null)
+                        continue;
+                    if (string.IsNullOrEmpty (room.Name)) {
+                        continue;
+                    }
+
+                    foreach (var fanD in room.DeviceList) {
+                        //2020-02-10
+                        byte [] returnBytes = null;
+                        if (fanD.Type == DeviceType.FanModule) {
+                            System.Threading.Tasks.Task.Run (() => {
+                                mSendCount++;
+                                if (open) {
+                                    returnBytes = Control.ControlBytesSendHasReturn (Command.SetSingleLight, fanD.SubnetID, fanD.DeviceID, new byte [] { fanD.LoopID, (fanD as FanModule).WindSpeed });
+                                } else {
+                                    returnBytes = Control.ControlBytesSendHasReturn (Command.SetSingleLight, fanD.SubnetID, fanD.DeviceID, new byte [] { fanD.LoopID, 0 });
+                                }
+
+
+                                if (showTip) {
+                                    if (returnBytes == null) {
+                                        Application.RunOnMainThread (() => {
+
+                                            string tipString = Language.StringByID (R.MyInternationalizationString.ControlFailure);
+                                            var btnTip = new Button () {
+                                                Height = Application.GetRealHeight (140),
+                                                Text = fanD.Name + tipString,// + "..." + controlDeviceIndex.ToString () + @"/" + sceneDeviceCount.ToString (),
+                                                BackgroundColor = 0xFFD7D7D7,
+                                            };
+                                            MainPage.MainFrameLayout.AddChidren (btnTip);
+                                            btnTip.MouseUpEventHandler += (sender, e) => {
+                                                btnTip.RemoveFromParent ();
+                                                //MainPage.MainFrameLayout.Remove (btnTip);
+                                                showTip = false;
+                                            };
+
+                                            System.Threading.Tasks.Task.Run (() => {
+                                                System.Threading.Thread.Sleep (3000);
+                                                Application.RunOnMainThread (() => {
+                                                    btnTip.RemoveFromParent ();
+                                                    //MainPage.MainFrameLayout.Remove (btnTip);
+                                                });
+                                            });
+
+                                        });
+                                    }
+                                }
+                                mSendCount--;
+                            });
+
+                            //绛夊緟100ms鍐嶅彂閫佺浜屼釜璁惧鏁版嵁
+                            System.Threading.Thread.Sleep (100);
+
+                        }
+                    }
+                }
+
+                while (mSendCount > 0) {
+                    System.Threading.Thread.Sleep (100);
+                }
+
+                Application.RunOnMainThread (() => {
+                    MainPage.Loading.Hide ();
+                });
+            });
+        }
     }
 }
\ No newline at end of file

--
Gitblit v1.8.0