JLChen
2020-06-04 6d55af8792cf8fbef0055e677b900fc352dba9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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;
 
    }
}