From f500e14c0a994487070380c50c85e0929cbc8e63 Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期二, 05 一月 2021 10:48:04 +0800 Subject: [PATCH] 2021-01-05 1.更新 --- Crabtree/SmartHome/UI/SimpleControl/CommonPage.cs | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Crabtree/SmartHome/UI/SimpleControl/CommonPage.cs b/Crabtree/SmartHome/UI/SimpleControl/CommonPage.cs index 28fe42e..5c772f4 100644 --- a/Crabtree/SmartHome/UI/SimpleControl/CommonPage.cs +++ b/Crabtree/SmartHome/UI/SimpleControl/CommonPage.cs @@ -26,7 +26,7 @@ //127.0.0.1 if (ip == "0.0.0.0") { try { - ip = System.Net.Dns.GetHostEntry ("homeautomation.havells.com").AddressList [0].ToString (); + ip = System.Net.Dns.GetHostEntry ("smarth-api.havells.com").AddressList [0].ToString (); } catch { } } return new System.Net.IPEndPoint (System.Net.IPAddress.Parse (ip), 9999); @@ -1243,7 +1243,7 @@ common.isMixBox = true; } else { Application.RunOnMainThread (() => { - MainPage.Loading.Start ("Search for device:" + devcieTempName); + //MainPage.Loading.Start ("Search for device:" + devcieTempName); ++searchTotal; GuideSettingGateway.InitSearchDeviceList (common); for (int k = 1; k <= common.LoopCount; k++) { @@ -1276,6 +1276,14 @@ //} else if (deviceType1.ToString ().Contains ("Switch")) { // devcieLoopName = "Relay SW" + usefullBytes [2].ToString (); //} + + //2020-07-03 濡傛灉鏄孩澶栨ā鍧楃被鍨嬶紝澶囨敞涓虹┖鐨勮瘽锛岄粯璁や负TV鍚嶅瓧 + if (deviceType1 == DeviceType.InfraredMode) { + devcieLoopName = "TV " + usefullBytes [2].ToString (); + } else if (deviceType1 == DeviceType.ACInfrared) { + //2020-08-28 濡傛灉鏄孩澶栫┖璋冪被鍨嬶紝澶囨敞涓虹┖鐨勮瘽锛岄粯璁や负AC鍚嶅瓧 + devcieLoopName = "AC " + usefullBytes [2].ToString (); + } byte [] ddd = CommonPage.MyEncodingGB2312.GetBytes (devcieLoopName); byte [] newddd = new byte [20]; Array.Copy (ddd, 0, newddd, 0, 20 < ddd.Length ? 20 : ddd.Length); -- Gitblit v1.8.0