JLChen
2020-10-28 c958e1806f0cc150644d9e8da82df0e6c8d8fe77
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.hdl.sdk.hdl_core.Config;
 
public class ZigbeeDeviceID {
    public static final int UnKown = 0x9999;
    public static final int ZbGateway = 0x9998;
    /**
     * 场景
     */
    public static final int SceneMark = 13;
    /**
     * 干接点
     * 设备ID:0
     */
    public static final int OnOffSwitch = 0;
    /**
     *继电器
     * 设备ID:2
     */
    public static final int OnOffOutput = 2;
    /**
     * 门锁
     * 设备ID:10
     */
    public static final int DoorLock = 10;
    /**
     * 调光设备
     * 设备ID:257
     */
    public static final int DimmableLight = 257;
    /**
     * 窗帘设备
     * 设备ID:514
     */
    public static final int WindowCoveringDevice = 514;
    /**
     * 颜色调光设备
     * 设备ID:528
     */
    public static final int ColorDimmableLight = 528;
    /**
     * 恒温器(空调)
     * 设备ID:769
     */
    public static final int Thermostat = 769;
    /**
     * 安防设备
     * 设备ID:1026
     */
    public static final int  IASZone = 1026;
    /**
     * 空气开关
     * 设备ID:53249
     */
   public static final int AirSwitch = 53249;
    /**
     *新风面板
     * 设备ID:53504
     */
    public static final int AirPanel = 53504;
    /**
     * 中继器
     * 设备ID:53250
     */
    public static final int Repeater = 53250;
    /**
     * 控制源设备
     * 设备ID:49152
     */
    public static final int OtaPanelDevice = 49152;
    /**
     * 控制源设备
     * 设备ID:49153
     */
    public static final int OtaDevice = 49153;
    /**
     * 转换器
     * 设备ID:53251
     */
    public static final int Transverter = 53251;
    /**
     * 温湿度传感器
     * 设备ID:770
     */
    public static final int TemperatureSensor = 770;
 
 
 
 
 
 
 
 
 
 
 
 
    /**
     * 设备的功能类型(此类型目前只针对继电器回路有效)
     */
    public class DeviceFunctionType {
        /**
         * 没有指定为什么类型
         */
        public static final int undefinedType = 0;
        /**
         * 开关
         */
        public static final int onOffType = 1;
        /**
         * 灯光
         */
        public static final int lightType = 2;
        /**
         * 插座
         */
        public static final int outletType = 3;
 
    }
}