From c7df85937f73fb347ee0b19e9c052d2d00a6df6c Mon Sep 17 00:00:00 2001 From: 黄学彪 <hxb@hdlchina.com.cn> Date: 星期五, 18 九月 2020 13:58:19 +0800 Subject: [PATCH] 新版本 --- ZigbeeApp/Shared/Phone/ZigBee/Device/CommonDevice.cs | 32 ++++++++++++++++++++++++++------ 1 files changed, 26 insertions(+), 6 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/ZigBee/Device/CommonDevice.cs b/ZigbeeApp/Shared/Phone/ZigBee/Device/CommonDevice.cs index 61a4856..9a3120f 100755 --- a/ZigbeeApp/Shared/Phone/ZigBee/Device/CommonDevice.cs +++ b/ZigbeeApp/Shared/Phone/ZigBee/Device/CommonDevice.cs @@ -157,7 +157,11 @@ /// <summary> /// 杈撳嚭绨囧垪琛� /// </summary> - public List<OutClusterObj> OutClusterList = new List<OutClusterObj>(); + public List<OutClusterObj> OutClusterList = new List<OutClusterObj>(); + /// <summary> + /// 鐢ㄤ簬璁板綍璁惧鏈�鏂颁笂鎶ョ殑灞炴�х姸鎬佷俊鎭� + /// </summary> + public List<AttributeStatusObj> AttributeStatus = new List<AttributeStatusObj>(); [Newtonsoft.Json.JsonIgnore] public DateTime LastDateTime = DateTime.MinValue; @@ -316,17 +320,28 @@ } else if (strDeviceType == ZigBee.Device.DeviceType.PMSensor.ToString()) { - return Newtonsoft.Json.JsonConvert.DeserializeObject<PMSensor>(strDeviceByte); + device = Newtonsoft.Json.JsonConvert.DeserializeObject<PMSensor>(strDeviceByte); } else if (strDeviceType == ZigBee.Device.DeviceType.ColorTemperatureLight.ToString()) { - return Newtonsoft.Json.JsonConvert.DeserializeObject<ColorTemperatureLight>(strDeviceByte); + device = Newtonsoft.Json.JsonConvert.DeserializeObject<ColorTemperatureLight>(strDeviceByte); } else if (strDeviceType == ZigBee.Device.DeviceType.Buzzer.ToString()) { - return Newtonsoft.Json.JsonConvert.DeserializeObject<Buzzer>(strDeviceByte); + device = Newtonsoft.Json.JsonConvert.DeserializeObject<Buzzer>(strDeviceByte); } - else { return null; } + else if (strDeviceType == ZigBee.Device.DeviceType.ColorDimmableLight.ToString()) + { + device = Newtonsoft.Json.JsonConvert.DeserializeObject<ColorDimmableLight>(strDeviceByte); + } + else if (strDeviceType == ZigBee.Device.DeviceType.DimmerSwitch.ToString()) + { + device = Newtonsoft.Json.JsonConvert.DeserializeObject<DimmerSwitch>(strDeviceByte); + } + else + { + return null; + } //鑳藉皯瀛樹竴涓彉閲忓氨灏戝瓨涓�涓� device.Type = (DeviceType)device.DeviceID; @@ -365,6 +380,11 @@ /// </summary> public void ReSave() { + if (Shared.Common.Config.Instance.Home.IsShowTemplate == true) + { + //灞曠ず妯℃澘鏃�,涓嶅厑璁镐繚瀛樻枃浠�(闃叉灞炴�т笂鎶ョ敤鐨�) + return; + } if (IconPath == string.Empty) { //淇濆瓨璁惧鍥炬爣(杩欓噷浼氫繚瀛樹竴娆�,涓嬮潰灏变笉鐢ㄤ繚瀛樹簡) @@ -470,7 +490,7 @@ /// </summary> public int AttributeId; /// <summary> - /// 灞炴�у�硷紝鏈�澶у崰鐢�4涓瓧鑺� + /// 灞炴�у�硷紝杩欎釜涓滆タ涓嶉渶瑕佷粈涔堥珮浣嶅湪鍚庝綆浣嶅湪鍓�,瀹冨凡缁忔槸杞负浜�10杩涘埗 /// </summary> public int AttributeData; /// <summary> -- Gitblit v1.8.0