JLChen
2020-01-18 fd78a0c0e444b83f40a9225c98adceb87bbda329
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
63
64
65
66
67
68
69
70
71
package com.hdl.sdk.hdl_core.HDLAppliances.Config;
 
/**
 * Created by Tommy on 2018/4/22.
 */
 
public class HDLApConfig {
 
    public static final int TYPE_LIGHT_DIMMER = 101;
    public static final int TYPE_LIGHT_RELAY = 102;
    public static final int TYPE_LIGHT_MIX_DIMMER = 103;
    public static final int TYPE_LIGHT_MIX_RELAY = 104;
 
    public static final int TYPE_CURTAIN_GLYSTRO = 201;
    public static final int TYPE_CURTAIN_ROLLER = 202;
    public static final int TYPE_CURTAIN_MODULE = 203;
 
    public static final int TYPE_AC_HVAC = 301;
    public static final int TYPE_AC_COOLMASTER  = 302;
    public static final int TYPE_AC_INFRARED = 303;
    public static final int TYPE_AC_PANEL = 304;
 
 
    public static final int TYPE_MUSIC_MODULE = 401;
    public static final int TYPE_MUSIC_THIRD_PARTY_MODULE = 402;
    public static final int TYPE_MUSIC_NEW_MODULE = 403;
 
    public static final int TYPE_LOGIC_MODULE = 501;
    public static final int TYPE_GLOBAL_LOGIC_MODULE = 502;
 
    public static final int TYPE_SENSOR_DRY_CONTACT = 601;
    public static final int TYPE_SENSOR_MOVEMENT_DETECTOR = 602;
    public static final int TYPE_SENSOR_TEMP = 603;
    public static final int TYPE_SENSOR_HUMIDITY = 604;
    public static final int TYPE_SENSOR_ILLUMINACE = 605;
    public static final int TYPE_SENSOR_VOC = 606;
    public static final int TYPE_SENSOR_PM_2_POINT_5 = 607;
    public static final int TYPE_SENSOR_C02 = 608;
    public static final int TYPE_SENSOR_LPG = 609;
    public static final int TYPE_SENSOR_CO_H2 = 610;
    public static final int TYPE_SENSOR_CH4 = 611;
    public static final int TYPE_SENSOR_SMOG = 612;
    public static final int TYPE_SENSOR_WIND_SPEED = 613;
    public static final int TYPE_SENSOR_WIND_PRESSURE = 614;
    public static final int TYPE_SENSOR_LIQUID_FLOW = 615;
    public static final int TYPE_SENSOR_LIQUID_PRESSURE = 616;
    public static final int TYPE_SENSOR_LIQUID_DEPTH = 617;
    public static final int TYPE_SENSOR_RAIN_FALL = 618;
    public static final int TYPE_SENSOR_WEIGHT = 619;
    public static final int TYPE_SENSOR_HEIGHT_LENGTH = 620;
    public static final int TYPE_SENSOR_OBJECT_SPEED = 621;
    public static final int TYPE_SENSOR_SHAKE = 622;
    public static final int TYPE_SENSOR_VOLTAGE = 623;
    public static final int TYPE_SENSOR_ELECTRICITY = 624;
    public static final int TYPE_SENSOR_POWER = 625;
 
 
 
    //2019-07
    public static final int TYPE_GEOTHERMAL_MODULE = 801;       //地热模块(0)    回路号,备注,地热状态
//    public static final int TYPE_GEOTHERMAL_MODULE_PANEL = 802; //常规地热面板(1)    面板号,备注,服务器模式,地热状态
//    public static final int TYPE_GEOTHERMAL_MODULE_PI = 803;    //带PI运算的地热面板(2)    面板号,备注,地热状态
 
    public static final int TYPE_FRESH_AIR = 1901;              //新风系统
 
 
 
 
 
 
}