forked from u236/homed-service-zigbee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinding.h
204 lines (117 loc) · 3.3 KB
/
binding.h
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#ifndef BINDING_H
#define BINDING_H
#include <QSharedPointer>
#include "zcl.h"
class BindingObject;
typedef QSharedPointer <BindingObject> Binding;
class BindingObject
{
public:
BindingObject(const QString &name, quint16 clusterId) :
m_name(name), m_clusterId(clusterId) {}
inline QString name(void) { return m_name; }
inline quint16 clusterId(void) { return m_clusterId; }
static void registerMetaTypes(void);
protected:
QString m_name;
quint16 m_clusterId;
};
namespace Bindings
{
class Battery : public BindingObject
{
public:
Battery(void) : BindingObject("battery", CLUSTER_POWER_CONFIGURATION) {}
};
class DeviceTemperature : public BindingObject
{
public:
DeviceTemperature(void) : BindingObject("deviceTemperature", CLUSTER_TEMPERATURE_CONFIGURATION) {}
};
class Scene : public BindingObject
{
public:
Scene(void) : BindingObject("scene", CLUSTER_SCENES) {}
};
class Status : public BindingObject
{
public:
Status(void) : BindingObject("status", CLUSTER_ON_OFF) {}
};
class Level : public BindingObject
{
public:
Level(void) : BindingObject("level", CLUSTER_LEVEL_CONTROL) {}
};
class Time : public BindingObject
{
public:
Time(void) : BindingObject("time", CLUSTER_TIME) {}
};
class AnalogInput : public BindingObject
{
public:
AnalogInput(void) : BindingObject("analogInput", CLUSTER_ANALOG_INPUT) {}
};
class MultistateInput : public BindingObject
{
public:
MultistateInput(void) : BindingObject("multistateInput", CLUSTER_MULTISTATE_INPUT) {}
};
class Cover : public BindingObject
{
public:
Cover(void) : BindingObject("cover", CLUSTER_WINDOW_COVERING) {}
};
class Color : public BindingObject
{
public:
Color(void) : BindingObject("color", CLUSTER_COLOR_CONTROL) {}
};
class Illuminance : public BindingObject
{
public:
Illuminance(void) : BindingObject("illuminance", CLUSTER_ILLUMINANCE_MEASUREMENT) {}
};
class Temperature : public BindingObject
{
public:
Temperature(void) : BindingObject("temperature", CLUSTER_TEMPERATURE_MEASUREMENT) {}
};
class Pressure : public BindingObject
{
public:
Pressure(void) : BindingObject("pressure", CLUSTER_PRESSURE_MEASUREMENT) {}
};
class Humidity : public BindingObject
{
public:
Humidity(void) : BindingObject("temperature", CLUSTER_RELATIVE_HUMIDITY) {}
};
class Moisture : public BindingObject
{
public:
Moisture(void) : BindingObject("moisture", CLUSTER_SOIL_MOISTURE) {}
};
class CO2 : public BindingObject
{
public:
CO2(void) : BindingObject("co2", CLUSTER_CO2_CONCENTRATION) {}
};
class Energy : public BindingObject
{
public:
Energy(void) : BindingObject("energy", CLUSTER_SMART_ENERGY_METERING) {}
};
class Power : public BindingObject
{
public:
Power(void) : BindingObject("power", CLUSTER_ELECTRICAL_MEASUREMENT) {}
};
class Perenio : public BindingObject
{
public:
Perenio(void) : BindingObject("perenio", CLUSTER_PERENIO) {}
};
}
#endif