using System;
namespace Shared
{
///
/// 空调
///
[System.Serializable]
public class YiPanelAC : YiPanelCommon
{
//public AC(){
// this.Type = DeviceType.ACHVAC;
// DeviceTextID = SimpleControl.R.MyInternationalizationString.AC;
//}
///
/// 温度模式
///
public byte TemperatureMode;
///
/// 室内温度
///
public byte IndoorTemperature;
///
/// 制冷温度
///
public byte CoolTemperature;
///
/// 制热温度
///
public byte HeatTemperature;
///
/// 自动温度
///
public byte AutoTemperature;
///
/// 除湿温度
///
public byte ChuShiTemperature;
///
/// 实际工作模式及风速
///
public byte RealModeAndFanSpeed;
///
/// 开关
///
public byte Power;
///
/// 设置模式
///
public byte SetMode;
///
/// 设置风速
///
public byte SetFanSpeed;
///
/// 设置温度
///
public byte SetTemperature = 25;
///
/// 扫风模式
///
public byte ShaoFanMode;
public string Windpicture = "AC/ACAuto.png";
public string Modepicture = "AC/ACRefrigeration.png";
}
public class PanelAC : AC
{
///
/// 属性值
///
public byte PropertyValue;
///
/// 大类
///
public byte large;
///
/// 小类
///
public byte sub;
///
/// 通道号
///
public byte channelnumber;
///
/// 类型值
///
public byte typevalue;
}
}