using System; using System.Collections.Generic; using System.Linq; using System.Text; using Shared.SimpleControl.Phone; namespace Shared { [System.Serializable] public class YiPanelFoolHeat : YiPanelCommon { public YiPanelFoolHeat () { this.Type = DeviceType.FoolHeat; DeviceTextID = SimpleControl.R.MyInternationalizationString.FoolHeat; } /// /// 工作模式 /// 0制热,1制冷,2,3 /// public byte WorkingMode = 0; public byte TemperatureTypeValue; /// /// 温度模式 /// 1 = Normal, 2 = Day , 3 = Night, 4 = Away, 5 = Timer /// public byte TemperatureType; public byte NormalTemperature; public byte DayTemperature; public byte NightTemperature; public byte AwayTemperature; public byte Timer;//0 = Day, 1 = Night public byte Status; /// /// 阀的开关状态(0--关 1--开) /// public byte PWDStatus; public byte PWDValue;//0-100 public byte WateringFlag; public byte WateringTime; /// /// 工作温度 /// public byte WorkingTemperature = 5; public byte PIDSpeed; public byte IndoorTemperature; public byte FloorTemperature; } }