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;
|
}
|
|
|
/// <summary>
|
/// 工作模式
|
/// 0制热,1制冷,2,3
|
/// </summary>
|
public byte WorkingMode = 0;
|
public byte TemperatureTypeValue;
|
|
/// <summary>
|
/// 温度模式
|
/// 1 = Normal, 2 = Day , 3 = Night, 4 = Away, 5 = Timer
|
/// </summary>
|
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;
|
/// <summary>
|
/// 阀的开关状态(0--关 1--开)
|
/// </summary>
|
public byte PWDStatus;
|
public byte PWDValue;//0-100
|
|
public byte WateringFlag;
|
|
public byte WateringTime;
|
|
/// <summary>
|
/// 工作温度
|
/// </summary>
|
public byte WorkingTemperature = 5;
|
public byte PIDSpeed;
|
public byte IndoorTemperature;
|
public byte FloorTemperature;
|
|
}
|
}
|