zigbee-herdsman-converters 21.10.0 → 21.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -0
- package/converters/fromZigbee.d.ts +0 -5
- package/converters/fromZigbee.d.ts.map +1 -1
- package/converters/fromZigbee.js +5 -30
- package/converters/fromZigbee.js.map +1 -1
- package/converters/toZigbee.d.ts +343 -352
- package/converters/toZigbee.d.ts.map +1 -1
- package/converters/toZigbee.js +14 -22
- package/converters/toZigbee.js.map +1 -1
- package/devices/adeo.d.ts.map +1 -1
- package/devices/adeo.js +6 -6
- package/devices/adeo.js.map +1 -1
- package/devices/bosch.js +1 -1
- package/devices/bosch.js.map +1 -1
- package/devices/datek.d.ts.map +1 -1
- package/devices/datek.js +13 -1
- package/devices/datek.js.map +1 -1
- package/devices/dresden_elektronik.js +1 -1
- package/devices/dresden_elektronik.js.map +1 -1
- package/devices/gmmts.d.ts.map +1 -1
- package/devices/gmmts.js.map +1 -1
- package/devices/hzc_electric.d.ts.map +1 -1
- package/devices/hzc_electric.js +11 -0
- package/devices/hzc_electric.js.map +1 -1
- package/devices/index.d.ts.map +1 -1
- package/devices/index.js +4 -0
- package/devices/index.js.map +1 -1
- package/devices/lumi.d.ts.map +1 -1
- package/devices/lumi.js +8 -0
- package/devices/lumi.js.map +1 -1
- package/devices/nodon.d.ts.map +1 -1
- package/devices/nodon.js +11 -10
- package/devices/nodon.js.map +1 -1
- package/devices/nous.d.ts.map +1 -1
- package/devices/nous.js +1 -0
- package/devices/nous.js.map +1 -1
- package/devices/plugwise.js +2 -2
- package/devices/plugwise.js.map +1 -1
- package/devices/robb.d.ts.map +1 -1
- package/devices/robb.js +12 -0
- package/devices/robb.js.map +1 -1
- package/devices/salus_controls.d.ts.map +1 -1
- package/devices/salus_controls.js +89 -0
- package/devices/salus_controls.js.map +1 -1
- package/devices/sonoff.d.ts.map +1 -1
- package/devices/sonoff.js +5 -0
- package/devices/sonoff.js.map +1 -1
- package/devices/sunricher.d.ts.map +1 -1
- package/devices/sunricher.js +14 -0
- package/devices/sunricher.js.map +1 -1
- package/devices/tuya.d.ts.map +1 -1
- package/devices/tuya.js +237 -0
- package/devices/tuya.js.map +1 -1
- package/devices/xal.d.ts +4 -0
- package/devices/xal.d.ts.map +1 -0
- package/devices/xal.js +29 -0
- package/devices/xal.js.map +1 -0
- package/devices/yale.d.ts.map +1 -1
- package/devices/yale.js.map +1 -1
- package/devices/yandex.d.ts.map +1 -1
- package/devices/yandex.js.map +1 -1
- package/devices/yokis.d.ts +4 -0
- package/devices/yokis.d.ts.map +1 -0
- package/devices/yokis.js +2454 -0
- package/devices/yokis.js.map +1 -0
- package/lib/constants.d.ts.map +1 -1
- package/lib/constants.js +4 -0
- package/lib/constants.js.map +1 -1
- package/lib/ewelink.d.ts +1 -1
- package/lib/generateDefinition.d.ts.map +1 -1
- package/lib/generateDefinition.js +2 -2
- package/lib/generateDefinition.js.map +1 -1
- package/lib/ledvance.d.ts +1 -1
- package/lib/legacy.d.ts +123 -123
- package/lib/legrand.d.ts +6 -6
- package/lib/lumi.d.ts +90 -90
- package/lib/modernExtend.d.ts.map +1 -1
- package/lib/modernExtend.js +5 -1
- package/lib/modernExtend.js.map +1 -1
- package/lib/nodon.d.ts +3 -0
- package/lib/nodon.d.ts.map +1 -0
- package/lib/nodon.js +130 -0
- package/lib/nodon.js.map +1 -0
- package/lib/philips.d.ts +10 -10
- package/lib/sunricher.d.ts +1 -1
- package/lib/tuya.d.ts +20 -20
- package/lib/types.d.ts +4 -4
- package/lib/types.d.ts.map +1 -1
- package/lib/zosung.d.ts +2 -2
- package/package.json +5 -5
package/converters/toZigbee.d.ts
CHANGED
|
@@ -8,23 +8,23 @@ declare const converters: {
|
|
|
8
8
|
*/
|
|
9
9
|
key: string[];
|
|
10
10
|
options: exposes.Numeric[];
|
|
11
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
11
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<KeyValueAny | {
|
|
12
12
|
state: KeyValueAny;
|
|
13
13
|
}>;
|
|
14
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
14
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
15
15
|
};
|
|
16
16
|
RM01_light_onoff_brightness: {
|
|
17
17
|
key: string[];
|
|
18
18
|
options: exposes.Numeric[];
|
|
19
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
19
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<KeyValueAny | {
|
|
20
20
|
state: KeyValueAny;
|
|
21
21
|
}>;
|
|
22
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
22
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
23
23
|
};
|
|
24
24
|
RM01_light_brightness_step: {
|
|
25
25
|
options: exposes.Numeric[];
|
|
26
26
|
key: string[];
|
|
27
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
27
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
28
28
|
state: {
|
|
29
29
|
brightness: number;
|
|
30
30
|
state: string;
|
|
@@ -33,7 +33,7 @@ declare const converters: {
|
|
|
33
33
|
};
|
|
34
34
|
RM01_light_brightness_move: {
|
|
35
35
|
key: string[];
|
|
36
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
36
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
37
37
|
state: {
|
|
38
38
|
brightness: any;
|
|
39
39
|
state: string;
|
|
@@ -43,23 +43,23 @@ declare const converters: {
|
|
|
43
43
|
ptvo_switch_light_brightness: {
|
|
44
44
|
key: string[];
|
|
45
45
|
options: exposes.Numeric[];
|
|
46
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
46
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<KeyValueAny | {
|
|
47
47
|
state: KeyValueAny;
|
|
48
48
|
}>;
|
|
49
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
49
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
50
50
|
};
|
|
51
51
|
TS110E_options: {
|
|
52
52
|
key: string[];
|
|
53
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
53
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
54
54
|
state: {
|
|
55
55
|
[x: string]: unknown;
|
|
56
56
|
};
|
|
57
57
|
}>;
|
|
58
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
58
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
59
59
|
};
|
|
60
60
|
TS110E_onoff_brightness: {
|
|
61
61
|
key: string[];
|
|
62
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
62
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
63
63
|
state: {
|
|
64
64
|
state: string;
|
|
65
65
|
};
|
|
@@ -71,19 +71,19 @@ declare const converters: {
|
|
|
71
71
|
brightness: number;
|
|
72
72
|
};
|
|
73
73
|
}>;
|
|
74
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
74
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
75
75
|
};
|
|
76
76
|
TS110E_light_onoff_brightness: {
|
|
77
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
77
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<KeyValueAny | {
|
|
78
78
|
state: KeyValueAny;
|
|
79
79
|
}>;
|
|
80
80
|
key: string[];
|
|
81
81
|
options: exposes.Numeric[];
|
|
82
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
82
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
83
83
|
};
|
|
84
84
|
read: {
|
|
85
85
|
key: string[];
|
|
86
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
86
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
87
87
|
state: {
|
|
88
88
|
[x: number]: void | import("zigbee-herdsman/dist/controller/tstype").KeyValue;
|
|
89
89
|
};
|
|
@@ -91,181 +91,181 @@ declare const converters: {
|
|
|
91
91
|
};
|
|
92
92
|
write: {
|
|
93
93
|
key: string[];
|
|
94
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
94
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
95
95
|
};
|
|
96
96
|
command: {
|
|
97
97
|
key: string[];
|
|
98
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
98
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
99
99
|
};
|
|
100
100
|
factory_reset: {
|
|
101
101
|
key: string[];
|
|
102
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
102
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
103
103
|
};
|
|
104
104
|
identify: {
|
|
105
105
|
key: string[];
|
|
106
106
|
options: exposes.Numeric[];
|
|
107
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
107
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
108
108
|
};
|
|
109
109
|
zcl_command: {
|
|
110
110
|
key: string[];
|
|
111
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
111
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
112
112
|
};
|
|
113
113
|
arm_mode: {
|
|
114
114
|
key: string[];
|
|
115
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
115
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
116
116
|
};
|
|
117
117
|
battery_percentage_remaining: {
|
|
118
118
|
key: string[];
|
|
119
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
119
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
120
120
|
};
|
|
121
121
|
battery_voltage: {
|
|
122
122
|
key: string[];
|
|
123
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
123
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
124
124
|
};
|
|
125
125
|
power_on_behavior: {
|
|
126
126
|
key: string[];
|
|
127
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
127
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
128
128
|
state: {
|
|
129
129
|
power_on_behavior: unknown;
|
|
130
130
|
};
|
|
131
131
|
}>;
|
|
132
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
132
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
133
133
|
};
|
|
134
134
|
light_color_mode: {
|
|
135
135
|
key: string[];
|
|
136
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
136
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
137
137
|
};
|
|
138
138
|
light_color_options: {
|
|
139
139
|
key: string[];
|
|
140
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
140
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
141
141
|
state: {
|
|
142
142
|
color_options: {
|
|
143
143
|
[s: string]: any;
|
|
144
144
|
};
|
|
145
145
|
};
|
|
146
146
|
}>;
|
|
147
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
147
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
148
148
|
};
|
|
149
149
|
lock: {
|
|
150
150
|
key: string[];
|
|
151
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
152
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
151
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
152
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
153
153
|
};
|
|
154
154
|
lock_auto_relock_time: {
|
|
155
155
|
key: string[];
|
|
156
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
156
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
157
157
|
state: {
|
|
158
158
|
auto_relock_time: unknown;
|
|
159
159
|
};
|
|
160
160
|
}>;
|
|
161
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
161
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
162
162
|
};
|
|
163
163
|
lock_sound_volume: {
|
|
164
164
|
key: string[];
|
|
165
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
165
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
166
166
|
state: {
|
|
167
167
|
sound_volume: string;
|
|
168
168
|
};
|
|
169
169
|
}>;
|
|
170
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
170
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
171
171
|
};
|
|
172
172
|
pincode_lock: {
|
|
173
173
|
key: string[];
|
|
174
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
175
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
174
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
175
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
176
176
|
};
|
|
177
177
|
lock_userstatus: {
|
|
178
178
|
key: string[];
|
|
179
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
180
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
179
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
180
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
181
181
|
};
|
|
182
182
|
cover_via_brightness: {
|
|
183
183
|
key: string[];
|
|
184
184
|
options: exposes.Binary[];
|
|
185
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
185
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
186
186
|
state: {
|
|
187
187
|
position: number;
|
|
188
188
|
};
|
|
189
189
|
}>;
|
|
190
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
190
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
191
191
|
};
|
|
192
192
|
warning: {
|
|
193
193
|
key: string[];
|
|
194
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
194
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
195
195
|
};
|
|
196
196
|
ias_max_duration: {
|
|
197
197
|
key: string[];
|
|
198
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
198
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
199
199
|
state: {
|
|
200
200
|
max_duration: unknown;
|
|
201
201
|
};
|
|
202
202
|
}>;
|
|
203
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
203
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
204
204
|
};
|
|
205
205
|
warning_simple: {
|
|
206
206
|
key: string[];
|
|
207
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
207
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
208
208
|
};
|
|
209
209
|
squawk: {
|
|
210
210
|
key: string[];
|
|
211
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
211
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
212
212
|
};
|
|
213
213
|
cover_state: {
|
|
214
214
|
key: string[];
|
|
215
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
215
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
216
216
|
};
|
|
217
217
|
cover_position_tilt: {
|
|
218
218
|
key: string[];
|
|
219
219
|
options: exposes.Binary[];
|
|
220
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
220
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
221
221
|
state: {
|
|
222
222
|
[x: string]: number;
|
|
223
223
|
};
|
|
224
224
|
}>;
|
|
225
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
225
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
226
226
|
};
|
|
227
227
|
cover_mode: {
|
|
228
228
|
key: string[];
|
|
229
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
229
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
230
230
|
state: {
|
|
231
231
|
cover_mode: {
|
|
232
232
|
[s: string]: any;
|
|
233
233
|
};
|
|
234
234
|
};
|
|
235
235
|
}>;
|
|
236
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
236
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
237
237
|
};
|
|
238
238
|
occupancy_timeout: {
|
|
239
239
|
key: string[];
|
|
240
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
240
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
241
241
|
state: {
|
|
242
242
|
occupancy_timeout: number;
|
|
243
243
|
};
|
|
244
244
|
}>;
|
|
245
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
245
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
246
246
|
};
|
|
247
247
|
level_config: {
|
|
248
248
|
key: string[];
|
|
249
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
249
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
250
250
|
state: {
|
|
251
251
|
level_config: {};
|
|
252
252
|
};
|
|
253
253
|
}>;
|
|
254
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
254
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
255
255
|
};
|
|
256
256
|
ballast_config: {
|
|
257
257
|
key: string[];
|
|
258
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
258
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
259
259
|
state: {
|
|
260
260
|
[x: string]: unknown;
|
|
261
261
|
};
|
|
262
262
|
}>;
|
|
263
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
263
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
264
264
|
};
|
|
265
265
|
light_brightness_step: {
|
|
266
266
|
key: string[];
|
|
267
267
|
options: exposes.Numeric[];
|
|
268
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
268
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
269
269
|
state: {
|
|
270
270
|
brightness: number;
|
|
271
271
|
state: string;
|
|
@@ -274,7 +274,7 @@ declare const converters: {
|
|
|
274
274
|
};
|
|
275
275
|
light_brightness_move: {
|
|
276
276
|
key: string[];
|
|
277
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
277
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
278
278
|
state: {
|
|
279
279
|
brightness: any;
|
|
280
280
|
state: string;
|
|
@@ -284,45 +284,45 @@ declare const converters: {
|
|
|
284
284
|
light_colortemp_step: {
|
|
285
285
|
key: string[];
|
|
286
286
|
options: exposes.Numeric[];
|
|
287
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
287
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
288
288
|
};
|
|
289
289
|
light_colortemp_move: {
|
|
290
290
|
key: string[];
|
|
291
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
291
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
292
292
|
};
|
|
293
293
|
light_color_and_colortemp_via_color: {
|
|
294
294
|
key: string[];
|
|
295
295
|
options: (exposes.Numeric | exposes.Binary)[];
|
|
296
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
296
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
297
297
|
state: KeyValueAny;
|
|
298
298
|
}>;
|
|
299
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
299
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
300
300
|
};
|
|
301
301
|
light_hue_saturation_step: {
|
|
302
302
|
key: string[];
|
|
303
303
|
options: exposes.Numeric[];
|
|
304
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
304
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
305
305
|
};
|
|
306
306
|
light_hue_saturation_move: {
|
|
307
307
|
key: string[];
|
|
308
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
308
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
309
309
|
};
|
|
310
310
|
light_onoff_brightness: {
|
|
311
311
|
key: string[];
|
|
312
312
|
options: exposes.Numeric[];
|
|
313
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
313
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<KeyValueAny | {
|
|
314
314
|
state: KeyValueAny;
|
|
315
315
|
}>;
|
|
316
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
316
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
317
317
|
};
|
|
318
318
|
light_colortemp_startup: {
|
|
319
319
|
key: string[];
|
|
320
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
320
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
321
321
|
state: {
|
|
322
322
|
color_temp_startup: unknown;
|
|
323
323
|
};
|
|
324
324
|
}>;
|
|
325
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
325
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
326
326
|
};
|
|
327
327
|
light_color_colortemp: {
|
|
328
328
|
/**
|
|
@@ -339,355 +339,355 @@ declare const converters: {
|
|
|
339
339
|
*/
|
|
340
340
|
key: string[];
|
|
341
341
|
options: (exposes.Numeric | exposes.Binary)[];
|
|
342
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
342
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
343
343
|
state: KeyValueAny;
|
|
344
344
|
}>;
|
|
345
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
345
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
346
346
|
};
|
|
347
347
|
effect: {
|
|
348
348
|
key: string[];
|
|
349
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
349
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
350
350
|
};
|
|
351
351
|
thermostat_remote_sensing: {
|
|
352
352
|
key: string[];
|
|
353
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
354
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
353
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
354
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
355
355
|
};
|
|
356
356
|
thermostat_weekly_schedule: {
|
|
357
357
|
key: string[];
|
|
358
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
359
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
358
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
359
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
360
360
|
};
|
|
361
361
|
thermostat_system_mode: {
|
|
362
362
|
key: string[];
|
|
363
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
363
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
364
364
|
state: {
|
|
365
365
|
system_mode: unknown;
|
|
366
366
|
};
|
|
367
367
|
}>;
|
|
368
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
368
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
369
369
|
};
|
|
370
370
|
acova_thermostat_system_mode: {
|
|
371
371
|
key: string[];
|
|
372
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
372
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
373
373
|
state: {
|
|
374
374
|
system_mode: unknown;
|
|
375
375
|
};
|
|
376
376
|
}>;
|
|
377
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
377
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
378
378
|
};
|
|
379
379
|
thermostat_control_sequence_of_operation: {
|
|
380
380
|
key: string[];
|
|
381
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
381
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
382
382
|
state: {
|
|
383
383
|
control_sequence_of_operation: unknown;
|
|
384
384
|
};
|
|
385
385
|
}>;
|
|
386
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
386
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
387
387
|
};
|
|
388
388
|
thermostat_programming_operation_mode: {
|
|
389
389
|
key: string[];
|
|
390
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
390
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
391
391
|
state: {
|
|
392
392
|
programming_operation_mode: unknown;
|
|
393
393
|
};
|
|
394
394
|
}>;
|
|
395
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
395
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
396
396
|
};
|
|
397
397
|
thermostat_temperature_display_mode: {
|
|
398
398
|
key: string[];
|
|
399
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
399
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
400
400
|
state: {
|
|
401
401
|
temperature_display_mode: unknown;
|
|
402
402
|
};
|
|
403
403
|
}>;
|
|
404
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
404
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
405
405
|
};
|
|
406
406
|
thermostat_keypad_lockout: {
|
|
407
407
|
key: string[];
|
|
408
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
408
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
409
409
|
state: {
|
|
410
410
|
keypad_lockout: unknown;
|
|
411
411
|
};
|
|
412
412
|
}>;
|
|
413
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
413
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
414
414
|
};
|
|
415
415
|
thermostat_temperature_setpoint_hold: {
|
|
416
416
|
key: string[];
|
|
417
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
418
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
417
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
418
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
419
419
|
};
|
|
420
420
|
thermostat_temperature_setpoint_hold_duration: {
|
|
421
421
|
key: string[];
|
|
422
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
423
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
422
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
423
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
424
424
|
};
|
|
425
425
|
fan_mode: {
|
|
426
426
|
key: string[];
|
|
427
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
427
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
428
428
|
state: {
|
|
429
429
|
fan_mode: string;
|
|
430
430
|
fan_state: string;
|
|
431
431
|
};
|
|
432
432
|
}>;
|
|
433
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
433
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
434
434
|
};
|
|
435
435
|
thermostat_local_temperature: {
|
|
436
436
|
key: string[];
|
|
437
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
437
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
438
438
|
};
|
|
439
439
|
thermostat_outdoor_temperature: {
|
|
440
440
|
key: string[];
|
|
441
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
441
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
442
442
|
};
|
|
443
443
|
thermostat_local_temperature_calibration: {
|
|
444
444
|
key: string[];
|
|
445
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
445
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
446
446
|
state: {
|
|
447
447
|
local_temperature_calibration: number;
|
|
448
448
|
};
|
|
449
449
|
}>;
|
|
450
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
450
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
451
451
|
};
|
|
452
452
|
thermostat_occupancy: {
|
|
453
453
|
key: string[];
|
|
454
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
454
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
455
455
|
};
|
|
456
456
|
thermostat_clear_weekly_schedule: {
|
|
457
457
|
key: string[];
|
|
458
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
458
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
459
459
|
};
|
|
460
460
|
thermostat_pi_heating_demand: {
|
|
461
461
|
key: string[];
|
|
462
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
462
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
463
463
|
};
|
|
464
464
|
thermostat_running_state: {
|
|
465
465
|
key: string[];
|
|
466
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
466
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
467
467
|
};
|
|
468
468
|
thermostat_occupied_heating_setpoint: {
|
|
469
469
|
key: string[];
|
|
470
470
|
options: exposes.Enum[];
|
|
471
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
471
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
472
472
|
state: {
|
|
473
473
|
occupied_heating_setpoint: number;
|
|
474
474
|
};
|
|
475
475
|
}>;
|
|
476
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
476
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
477
477
|
};
|
|
478
478
|
thermostat_unoccupied_heating_setpoint: {
|
|
479
479
|
key: string[];
|
|
480
480
|
options: exposes.Enum[];
|
|
481
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
481
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
482
482
|
state: {
|
|
483
483
|
unoccupied_heating_setpoint: number;
|
|
484
484
|
};
|
|
485
485
|
}>;
|
|
486
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
486
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
487
487
|
};
|
|
488
488
|
thermostat_occupied_cooling_setpoint: {
|
|
489
489
|
key: string[];
|
|
490
490
|
options: exposes.Enum[];
|
|
491
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
491
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
492
492
|
state: {
|
|
493
493
|
occupied_cooling_setpoint: number;
|
|
494
494
|
};
|
|
495
495
|
}>;
|
|
496
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
496
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
497
497
|
};
|
|
498
498
|
thermostat_unoccupied_cooling_setpoint: {
|
|
499
499
|
key: string[];
|
|
500
500
|
options: exposes.Enum[];
|
|
501
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
501
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
502
502
|
state: {
|
|
503
503
|
unoccupied_cooling_setpoint: number;
|
|
504
504
|
};
|
|
505
505
|
}>;
|
|
506
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
506
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
507
507
|
};
|
|
508
508
|
thermostat_setpoint_raise_lower: {
|
|
509
509
|
key: string[];
|
|
510
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
510
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
511
511
|
};
|
|
512
512
|
thermostat_relay_status_log: {
|
|
513
513
|
key: string[];
|
|
514
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
514
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
515
515
|
};
|
|
516
516
|
thermostat_running_mode: {
|
|
517
517
|
key: string[];
|
|
518
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
518
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
519
519
|
};
|
|
520
520
|
thermostat_min_heat_setpoint_limit: {
|
|
521
521
|
key: string[];
|
|
522
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
522
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
523
523
|
state: {
|
|
524
524
|
min_heat_setpoint_limit: number;
|
|
525
525
|
};
|
|
526
526
|
}>;
|
|
527
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
527
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
528
528
|
};
|
|
529
529
|
thermostat_max_heat_setpoint_limit: {
|
|
530
530
|
key: string[];
|
|
531
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
531
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
532
532
|
state: {
|
|
533
533
|
max_heat_setpoint_limit: number;
|
|
534
534
|
};
|
|
535
535
|
}>;
|
|
536
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
536
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
537
537
|
};
|
|
538
538
|
thermostat_min_cool_setpoint_limit: {
|
|
539
539
|
key: string[];
|
|
540
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
540
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
541
541
|
state: {
|
|
542
542
|
min_cool_setpoint_limit: number;
|
|
543
543
|
};
|
|
544
544
|
}>;
|
|
545
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
545
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
546
546
|
};
|
|
547
547
|
thermostat_max_cool_setpoint_limit: {
|
|
548
548
|
key: string[];
|
|
549
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
549
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
550
550
|
state: {
|
|
551
551
|
max_cool_setpoint_limit: number;
|
|
552
552
|
};
|
|
553
553
|
}>;
|
|
554
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
554
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
555
555
|
};
|
|
556
556
|
thermostat_ac_louver_position: {
|
|
557
557
|
key: string[];
|
|
558
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
558
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
559
559
|
state: {
|
|
560
560
|
ac_louver_position: unknown;
|
|
561
561
|
};
|
|
562
562
|
}>;
|
|
563
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
563
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
564
564
|
};
|
|
565
565
|
electrical_measurement_power: {
|
|
566
566
|
key: string[];
|
|
567
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
567
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
568
568
|
};
|
|
569
569
|
electrical_measurement_power_phase_b: {
|
|
570
570
|
key: string[];
|
|
571
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
571
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
572
572
|
};
|
|
573
573
|
electrical_measurement_power_phase_c: {
|
|
574
574
|
key: string[];
|
|
575
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
575
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
576
576
|
};
|
|
577
577
|
metering_power: {
|
|
578
578
|
key: string[];
|
|
579
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
579
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
580
580
|
};
|
|
581
581
|
currentsummdelivered: {
|
|
582
582
|
key: string[];
|
|
583
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
583
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
584
584
|
};
|
|
585
585
|
currentsummreceived: {
|
|
586
586
|
key: string[];
|
|
587
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
587
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
588
588
|
};
|
|
589
589
|
frequency: {
|
|
590
590
|
key: string[];
|
|
591
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
591
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
592
592
|
};
|
|
593
593
|
electrical_measurement_power_reactive: {
|
|
594
594
|
key: string[];
|
|
595
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
595
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
596
596
|
};
|
|
597
597
|
powerfactor: {
|
|
598
598
|
key: string[];
|
|
599
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
599
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
600
600
|
};
|
|
601
601
|
acvoltage: {
|
|
602
602
|
key: string[];
|
|
603
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
603
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
604
604
|
};
|
|
605
605
|
acvoltage_phase_b: {
|
|
606
606
|
key: string[];
|
|
607
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
607
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
608
608
|
};
|
|
609
609
|
acvoltage_phase_c: {
|
|
610
610
|
key: string[];
|
|
611
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
611
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
612
612
|
};
|
|
613
613
|
accurrent: {
|
|
614
614
|
key: string[];
|
|
615
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
615
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
616
616
|
};
|
|
617
617
|
accurrent_phase_b: {
|
|
618
618
|
key: string[];
|
|
619
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
619
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
620
620
|
};
|
|
621
621
|
accurrent_phase_c: {
|
|
622
622
|
key: string[];
|
|
623
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
623
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
624
624
|
};
|
|
625
625
|
temperature: {
|
|
626
626
|
key: string[];
|
|
627
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
627
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
628
628
|
};
|
|
629
629
|
humidity: {
|
|
630
630
|
key: string[];
|
|
631
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
631
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
632
632
|
};
|
|
633
633
|
illuminance: {
|
|
634
634
|
key: string[];
|
|
635
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
635
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
636
636
|
};
|
|
637
637
|
elko_power_status: {
|
|
638
638
|
key: string[];
|
|
639
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
639
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
640
640
|
state: {
|
|
641
641
|
system_mode: unknown;
|
|
642
642
|
};
|
|
643
643
|
}>;
|
|
644
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
644
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
645
645
|
};
|
|
646
646
|
elko_relay_state: {
|
|
647
647
|
key: string[];
|
|
648
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
648
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
649
649
|
};
|
|
650
650
|
elko_local_temperature_calibration: {
|
|
651
651
|
key: string[];
|
|
652
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
652
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
653
653
|
state: {
|
|
654
654
|
local_temperature_calibration: number;
|
|
655
655
|
};
|
|
656
656
|
}>;
|
|
657
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
657
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
658
658
|
};
|
|
659
659
|
livolo_socket_switch_on_off: {
|
|
660
660
|
key: string[];
|
|
661
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
661
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
662
662
|
state: {
|
|
663
663
|
state: string;
|
|
664
664
|
};
|
|
665
665
|
}>;
|
|
666
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
666
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
667
667
|
};
|
|
668
668
|
livolo_switch_on_off: {
|
|
669
669
|
key: string[];
|
|
670
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
670
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
671
671
|
state: {
|
|
672
672
|
state: string;
|
|
673
673
|
};
|
|
674
674
|
}>;
|
|
675
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
675
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
676
676
|
};
|
|
677
677
|
livolo_dimmer_level: {
|
|
678
678
|
key: string[];
|
|
679
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
679
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
680
680
|
state: {
|
|
681
681
|
brightness_percent: number;
|
|
682
682
|
brightness: number;
|
|
683
683
|
level: number;
|
|
684
684
|
};
|
|
685
685
|
}>;
|
|
686
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
686
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
687
687
|
};
|
|
688
688
|
livolo_cover_state: {
|
|
689
689
|
key: string[];
|
|
690
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
690
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
691
691
|
state: {
|
|
692
692
|
moving: boolean;
|
|
693
693
|
};
|
|
@@ -695,7 +695,7 @@ declare const converters: {
|
|
|
695
695
|
};
|
|
696
696
|
livolo_cover_position: {
|
|
697
697
|
key: string[];
|
|
698
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
698
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
699
699
|
state: {
|
|
700
700
|
position: number;
|
|
701
701
|
moving: boolean;
|
|
@@ -704,15 +704,15 @@ declare const converters: {
|
|
|
704
704
|
};
|
|
705
705
|
livolo_cover_options: {
|
|
706
706
|
key: string[];
|
|
707
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
707
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
708
708
|
};
|
|
709
709
|
ZigUP_lock: {
|
|
710
710
|
key: string[];
|
|
711
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
711
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
712
712
|
};
|
|
713
713
|
LS21001_alert_behaviour: {
|
|
714
714
|
key: string[];
|
|
715
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
715
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
716
716
|
state: {
|
|
717
717
|
alert_behaviour: unknown;
|
|
718
718
|
};
|
|
@@ -720,11 +720,11 @@ declare const converters: {
|
|
|
720
720
|
};
|
|
721
721
|
STS_PRS_251_beep: {
|
|
722
722
|
key: string[];
|
|
723
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
723
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
724
724
|
};
|
|
725
725
|
SPZ01_power_outage_memory: {
|
|
726
726
|
key: string[];
|
|
727
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
727
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
728
728
|
state: {
|
|
729
729
|
power_outage_memory: unknown;
|
|
730
730
|
};
|
|
@@ -732,7 +732,7 @@ declare const converters: {
|
|
|
732
732
|
};
|
|
733
733
|
tuya_relay_din_led_indicator: {
|
|
734
734
|
key: string[];
|
|
735
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
735
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
736
736
|
state: {
|
|
737
737
|
indicator_mode: unknown;
|
|
738
738
|
};
|
|
@@ -740,264 +740,264 @@ declare const converters: {
|
|
|
740
740
|
};
|
|
741
741
|
kmpcil_res005_on_off: {
|
|
742
742
|
key: string[];
|
|
743
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
743
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
744
744
|
state: {
|
|
745
745
|
state: string;
|
|
746
746
|
};
|
|
747
747
|
}>;
|
|
748
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
748
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
749
749
|
};
|
|
750
750
|
hue_wall_switch_device_mode: {
|
|
751
751
|
key: string[];
|
|
752
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
753
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
752
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
753
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
754
754
|
};
|
|
755
755
|
danfoss_thermostat_occupied_heating_setpoint: {
|
|
756
756
|
key: string[];
|
|
757
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
758
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
757
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
758
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
759
759
|
};
|
|
760
760
|
danfoss_thermostat_occupied_heating_setpoint_scheduled: {
|
|
761
761
|
key: string[];
|
|
762
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
763
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
762
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
763
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
764
764
|
};
|
|
765
765
|
danfoss_mounted_mode_active: {
|
|
766
766
|
key: string[];
|
|
767
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
767
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
768
768
|
};
|
|
769
769
|
danfoss_mounted_mode_control: {
|
|
770
770
|
key: string[];
|
|
771
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
771
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
772
772
|
state: {
|
|
773
773
|
mounted_mode_control: unknown;
|
|
774
774
|
};
|
|
775
775
|
}>;
|
|
776
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
776
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
777
777
|
};
|
|
778
778
|
danfoss_thermostat_vertical_orientation: {
|
|
779
779
|
key: string[];
|
|
780
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
780
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
781
781
|
state: {
|
|
782
782
|
thermostat_vertical_orientation: unknown;
|
|
783
783
|
};
|
|
784
784
|
}>;
|
|
785
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
785
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
786
786
|
};
|
|
787
787
|
danfoss_external_measured_room_sensor: {
|
|
788
788
|
key: string[];
|
|
789
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
789
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
790
790
|
state: {
|
|
791
791
|
external_measured_room_sensor: unknown;
|
|
792
792
|
};
|
|
793
793
|
}>;
|
|
794
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
794
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
795
795
|
};
|
|
796
796
|
danfoss_radiator_covered: {
|
|
797
797
|
key: string[];
|
|
798
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
798
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
799
799
|
state: {
|
|
800
800
|
radiator_covered: unknown;
|
|
801
801
|
};
|
|
802
802
|
}>;
|
|
803
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
803
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
804
804
|
};
|
|
805
805
|
danfoss_viewing_direction: {
|
|
806
806
|
key: string[];
|
|
807
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
807
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
808
808
|
state: {
|
|
809
809
|
viewing_direction: unknown;
|
|
810
810
|
};
|
|
811
811
|
}>;
|
|
812
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
812
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
813
813
|
};
|
|
814
814
|
danfoss_algorithm_scale_factor: {
|
|
815
815
|
key: string[];
|
|
816
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
816
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
817
817
|
state: {
|
|
818
818
|
algorithm_scale_factor: unknown;
|
|
819
819
|
};
|
|
820
820
|
}>;
|
|
821
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
821
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
822
822
|
};
|
|
823
823
|
danfoss_heat_available: {
|
|
824
824
|
key: string[];
|
|
825
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
825
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
826
826
|
state: {
|
|
827
827
|
heat_available: unknown;
|
|
828
828
|
};
|
|
829
829
|
}>;
|
|
830
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
830
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
831
831
|
};
|
|
832
832
|
danfoss_heat_required: {
|
|
833
833
|
key: string[];
|
|
834
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
834
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
835
835
|
};
|
|
836
836
|
danfoss_day_of_week: {
|
|
837
837
|
key: string[];
|
|
838
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
838
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
839
839
|
state: {
|
|
840
840
|
day_of_week: unknown;
|
|
841
841
|
};
|
|
842
842
|
}>;
|
|
843
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
843
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
844
844
|
};
|
|
845
845
|
danfoss_trigger_time: {
|
|
846
846
|
key: string[];
|
|
847
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
847
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
848
848
|
state: {
|
|
849
849
|
trigger_time: unknown;
|
|
850
850
|
};
|
|
851
851
|
}>;
|
|
852
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
852
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
853
853
|
};
|
|
854
854
|
danfoss_window_open_feature: {
|
|
855
855
|
key: string[];
|
|
856
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
856
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
857
857
|
state: {
|
|
858
858
|
window_open_feature: unknown;
|
|
859
859
|
};
|
|
860
860
|
}>;
|
|
861
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
861
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
862
862
|
};
|
|
863
863
|
danfoss_window_open_internal: {
|
|
864
864
|
key: string[];
|
|
865
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
865
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
866
866
|
};
|
|
867
867
|
danfoss_window_open_external: {
|
|
868
868
|
key: string[];
|
|
869
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
869
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
870
870
|
state: {
|
|
871
871
|
window_open_external: unknown;
|
|
872
872
|
};
|
|
873
873
|
}>;
|
|
874
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
874
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
875
875
|
};
|
|
876
876
|
danfoss_load_balancing_enable: {
|
|
877
877
|
key: string[];
|
|
878
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
878
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
879
879
|
state: {
|
|
880
880
|
load_balancing_enable: unknown;
|
|
881
881
|
};
|
|
882
882
|
}>;
|
|
883
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
883
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
884
884
|
};
|
|
885
885
|
danfoss_load_room_mean: {
|
|
886
886
|
key: string[];
|
|
887
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
887
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
888
888
|
state: {
|
|
889
889
|
load_room_mean: unknown;
|
|
890
890
|
};
|
|
891
891
|
}>;
|
|
892
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
892
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
893
893
|
};
|
|
894
894
|
danfoss_load_estimate: {
|
|
895
895
|
key: string[];
|
|
896
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
896
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
897
897
|
};
|
|
898
898
|
danfoss_preheat_status: {
|
|
899
899
|
key: string[];
|
|
900
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
900
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
901
901
|
};
|
|
902
902
|
danfoss_adaptation_status: {
|
|
903
903
|
key: string[];
|
|
904
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
904
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
905
905
|
};
|
|
906
906
|
danfoss_adaptation_settings: {
|
|
907
907
|
key: string[];
|
|
908
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
908
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
909
909
|
state: {
|
|
910
910
|
adaptation_run_settings: unknown;
|
|
911
911
|
};
|
|
912
912
|
}>;
|
|
913
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
913
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
914
914
|
};
|
|
915
915
|
danfoss_adaptation_control: {
|
|
916
916
|
key: string[];
|
|
917
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
917
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
918
918
|
state: {
|
|
919
919
|
adaptation_run_control: unknown;
|
|
920
920
|
};
|
|
921
921
|
}>;
|
|
922
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
922
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
923
923
|
};
|
|
924
924
|
danfoss_regulation_setpoint_offset: {
|
|
925
925
|
key: string[];
|
|
926
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
926
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
927
927
|
state: {
|
|
928
928
|
regulation_setpoint_offset: unknown;
|
|
929
929
|
};
|
|
930
930
|
}>;
|
|
931
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
931
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
932
932
|
};
|
|
933
933
|
danfoss_output_status: {
|
|
934
934
|
key: string[];
|
|
935
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
935
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
936
936
|
};
|
|
937
937
|
danfoss_room_status_code: {
|
|
938
938
|
key: string[];
|
|
939
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
939
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
940
940
|
};
|
|
941
941
|
danfoss_floor_sensor_mode: {
|
|
942
942
|
key: string[];
|
|
943
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
943
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
944
944
|
};
|
|
945
945
|
danfoss_floor_min_setpoint: {
|
|
946
946
|
key: string[];
|
|
947
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
947
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
948
948
|
state: {
|
|
949
949
|
floor_min_setpoint: number;
|
|
950
950
|
};
|
|
951
951
|
}>;
|
|
952
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
952
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
953
953
|
};
|
|
954
954
|
danfoss_floor_max_setpoint: {
|
|
955
955
|
key: string[];
|
|
956
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
956
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
957
957
|
state: {
|
|
958
958
|
floor_max_setpoint: number;
|
|
959
959
|
};
|
|
960
960
|
}>;
|
|
961
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
961
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
962
962
|
};
|
|
963
963
|
danfoss_system_status_code: {
|
|
964
964
|
key: string[];
|
|
965
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
965
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
966
966
|
};
|
|
967
967
|
danfoss_system_status_water: {
|
|
968
968
|
key: string[];
|
|
969
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
969
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
970
970
|
};
|
|
971
971
|
danfoss_multimaster_role: {
|
|
972
972
|
key: string[];
|
|
973
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
973
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
974
974
|
};
|
|
975
975
|
ZMCSW032D_cover_position: {
|
|
976
976
|
key: string[];
|
|
977
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
977
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
978
978
|
state: {
|
|
979
979
|
position: number;
|
|
980
980
|
};
|
|
981
981
|
}>;
|
|
982
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
982
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
983
983
|
};
|
|
984
984
|
namron_thermostat: {
|
|
985
985
|
key: string[];
|
|
986
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
987
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
986
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
987
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
988
988
|
};
|
|
989
989
|
namron_thermostat_child_lock: {
|
|
990
990
|
key: string[];
|
|
991
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
991
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
992
992
|
state: {
|
|
993
993
|
child_lock: unknown;
|
|
994
994
|
};
|
|
995
995
|
}>;
|
|
996
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
996
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
997
997
|
};
|
|
998
998
|
easycode_auto_relock: {
|
|
999
999
|
key: string[];
|
|
1000
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1000
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1001
1001
|
state: {
|
|
1002
1002
|
auto_relock: unknown;
|
|
1003
1003
|
};
|
|
@@ -1006,23 +1006,23 @@ declare const converters: {
|
|
|
1006
1006
|
tuya_led_control: {
|
|
1007
1007
|
key: string[];
|
|
1008
1008
|
options: exposes.Binary[];
|
|
1009
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1009
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1010
1010
|
state: KeyValueAny;
|
|
1011
1011
|
}>;
|
|
1012
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1012
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1013
1013
|
};
|
|
1014
1014
|
tuya_led_controller: {
|
|
1015
1015
|
key: string[];
|
|
1016
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1016
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1017
1017
|
state: {
|
|
1018
1018
|
state: string;
|
|
1019
1019
|
};
|
|
1020
1020
|
}>;
|
|
1021
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1021
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1022
1022
|
};
|
|
1023
1023
|
EMIZB_132_mode: {
|
|
1024
1024
|
key: string[];
|
|
1025
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1025
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1026
1026
|
state: {
|
|
1027
1027
|
interface_mode: unknown;
|
|
1028
1028
|
};
|
|
@@ -1030,43 +1030,43 @@ declare const converters: {
|
|
|
1030
1030
|
};
|
|
1031
1031
|
eurotronic_host_flags: {
|
|
1032
1032
|
key: string[];
|
|
1033
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1033
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1034
1034
|
state: {
|
|
1035
1035
|
[x: string]: unknown;
|
|
1036
1036
|
};
|
|
1037
1037
|
}>;
|
|
1038
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1038
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1039
1039
|
};
|
|
1040
1040
|
eurotronic_error_status: {
|
|
1041
1041
|
key: string[];
|
|
1042
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1042
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1043
1043
|
};
|
|
1044
1044
|
eurotronic_current_heating_setpoint: {
|
|
1045
1045
|
key: string[];
|
|
1046
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1047
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1046
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1047
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1048
1048
|
};
|
|
1049
1049
|
eurotronic_valve_position: {
|
|
1050
1050
|
key: string[];
|
|
1051
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1051
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1052
1052
|
state: {
|
|
1053
1053
|
[x: string]: unknown;
|
|
1054
1054
|
};
|
|
1055
1055
|
}>;
|
|
1056
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1056
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1057
1057
|
};
|
|
1058
1058
|
eurotronic_trv_mode: {
|
|
1059
1059
|
key: string[];
|
|
1060
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1060
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1061
1061
|
state: {
|
|
1062
1062
|
[x: string]: unknown;
|
|
1063
1063
|
};
|
|
1064
1064
|
}>;
|
|
1065
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1065
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1066
1066
|
};
|
|
1067
1067
|
eurotronic_child_lock: {
|
|
1068
1068
|
key: string[];
|
|
1069
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1069
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1070
1070
|
state: {
|
|
1071
1071
|
[x: string]: unknown;
|
|
1072
1072
|
};
|
|
@@ -1074,42 +1074,42 @@ declare const converters: {
|
|
|
1074
1074
|
};
|
|
1075
1075
|
eurotronic_mirror_display: {
|
|
1076
1076
|
key: string[];
|
|
1077
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1077
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1078
1078
|
state: {
|
|
1079
1079
|
[x: string]: unknown;
|
|
1080
1080
|
};
|
|
1081
1081
|
}>;
|
|
1082
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1082
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1083
1083
|
};
|
|
1084
1084
|
stelpro_thermostat_outdoor_temperature: {
|
|
1085
1085
|
key: string[];
|
|
1086
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1086
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1087
1087
|
};
|
|
1088
1088
|
DTB190502A1_LED: {
|
|
1089
1089
|
key: string[];
|
|
1090
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1090
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1091
1091
|
};
|
|
1092
1092
|
ptvo_switch_trigger: {
|
|
1093
1093
|
key: string[];
|
|
1094
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1094
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1095
1095
|
};
|
|
1096
1096
|
ptvo_switch_uart: {
|
|
1097
1097
|
key: string[];
|
|
1098
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1098
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1099
1099
|
};
|
|
1100
1100
|
ptvo_switch_analog_input: {
|
|
1101
1101
|
key: string[];
|
|
1102
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1103
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1102
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1103
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1104
1104
|
};
|
|
1105
1105
|
tint_scene: {
|
|
1106
1106
|
key: string[];
|
|
1107
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1107
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1108
1108
|
};
|
|
1109
1109
|
bticino_4027C_cover_state: {
|
|
1110
1110
|
key: string[];
|
|
1111
1111
|
options: exposes.Binary[];
|
|
1112
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1112
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1113
1113
|
state: {
|
|
1114
1114
|
position: number;
|
|
1115
1115
|
};
|
|
@@ -1118,40 +1118,40 @@ declare const converters: {
|
|
|
1118
1118
|
bticino_4027C_cover_position: {
|
|
1119
1119
|
key: string[];
|
|
1120
1120
|
options: exposes.Binary[];
|
|
1121
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1121
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1122
1122
|
state: {
|
|
1123
1123
|
position: number;
|
|
1124
1124
|
};
|
|
1125
1125
|
}>;
|
|
1126
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1126
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1127
1127
|
};
|
|
1128
1128
|
legrand_device_mode: {
|
|
1129
1129
|
key: string[];
|
|
1130
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1130
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1131
1131
|
state: {
|
|
1132
1132
|
device_mode: unknown;
|
|
1133
1133
|
};
|
|
1134
1134
|
}>;
|
|
1135
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1135
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1136
1136
|
};
|
|
1137
1137
|
legrand_pilot_wire_mode: {
|
|
1138
1138
|
key: string[];
|
|
1139
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1139
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1140
1140
|
state: {
|
|
1141
1141
|
pilot_wire_mode: unknown;
|
|
1142
1142
|
};
|
|
1143
1143
|
}>;
|
|
1144
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1144
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1145
1145
|
};
|
|
1146
1146
|
legrand_power_alarm: {
|
|
1147
1147
|
key: string[];
|
|
1148
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1149
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1148
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1149
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1150
1150
|
};
|
|
1151
1151
|
diyruz_freepad_on_off_config: {
|
|
1152
1152
|
key: string[];
|
|
1153
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1154
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1153
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1154
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1155
1155
|
state: {
|
|
1156
1156
|
[x: string]: unknown;
|
|
1157
1157
|
};
|
|
@@ -1159,63 +1159,63 @@ declare const converters: {
|
|
|
1159
1159
|
};
|
|
1160
1160
|
TYZB01_on_off: {
|
|
1161
1161
|
key: string[];
|
|
1162
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1162
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1163
1163
|
state: {
|
|
1164
1164
|
state: string;
|
|
1165
1165
|
};
|
|
1166
1166
|
} | {
|
|
1167
1167
|
state?: undefined;
|
|
1168
1168
|
}>;
|
|
1169
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1169
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1170
1170
|
};
|
|
1171
1171
|
diyruz_geiger_config: {
|
|
1172
1172
|
key: string[];
|
|
1173
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1173
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, rawValue: unknown, meta: Tz.Meta) => Promise<{
|
|
1174
1174
|
state: {
|
|
1175
1175
|
[x: string]: unknown;
|
|
1176
1176
|
};
|
|
1177
1177
|
}>;
|
|
1178
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1178
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1179
1179
|
};
|
|
1180
1180
|
diyruz_airsense_config: {
|
|
1181
1181
|
key: string[];
|
|
1182
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1182
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, rawValue: unknown, meta: Tz.Meta) => Promise<{
|
|
1183
1183
|
state: {
|
|
1184
1184
|
[x: string]: unknown;
|
|
1185
1185
|
};
|
|
1186
1186
|
}>;
|
|
1187
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1187
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1188
1188
|
};
|
|
1189
1189
|
diyruz_zintercom_config: {
|
|
1190
1190
|
key: string[];
|
|
1191
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1191
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, rawValue: unknown, meta: Tz.Meta) => Promise<{
|
|
1192
1192
|
state: {
|
|
1193
1193
|
[x: string]: unknown;
|
|
1194
1194
|
};
|
|
1195
1195
|
}>;
|
|
1196
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1196
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1197
1197
|
};
|
|
1198
1198
|
power_source: {
|
|
1199
1199
|
key: string[];
|
|
1200
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1200
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1201
1201
|
};
|
|
1202
1202
|
ts0201_temperature_humidity_alarm: {
|
|
1203
1203
|
key: string[];
|
|
1204
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1204
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1205
1205
|
};
|
|
1206
1206
|
heiman_ir_remote: {
|
|
1207
1207
|
key: string[];
|
|
1208
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1208
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1209
1209
|
};
|
|
1210
1210
|
scene_store: {
|
|
1211
1211
|
key: string[];
|
|
1212
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1212
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: KeyValueAny, meta: Tz.Meta) => Promise<{
|
|
1213
1213
|
state: {};
|
|
1214
1214
|
}>;
|
|
1215
1215
|
};
|
|
1216
1216
|
scene_recall: {
|
|
1217
1217
|
key: string[];
|
|
1218
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1218
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1219
1219
|
membersState: KeyValueAny;
|
|
1220
1220
|
state?: undefined;
|
|
1221
1221
|
} | {
|
|
@@ -1225,76 +1225,76 @@ declare const converters: {
|
|
|
1225
1225
|
};
|
|
1226
1226
|
scene_add: {
|
|
1227
1227
|
key: string[];
|
|
1228
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1228
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1229
1229
|
state: {};
|
|
1230
1230
|
}>;
|
|
1231
1231
|
};
|
|
1232
1232
|
scene_remove: {
|
|
1233
1233
|
key: string[];
|
|
1234
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1234
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1235
1235
|
};
|
|
1236
1236
|
scene_remove_all: {
|
|
1237
1237
|
key: string[];
|
|
1238
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1238
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1239
1239
|
};
|
|
1240
1240
|
scene_rename: {
|
|
1241
1241
|
key: string[];
|
|
1242
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1242
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1243
1243
|
};
|
|
1244
1244
|
TS0003_curtain_switch: {
|
|
1245
1245
|
key: string[];
|
|
1246
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1247
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1246
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1247
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1248
1248
|
};
|
|
1249
1249
|
ts0216_duration: {
|
|
1250
1250
|
key: string[];
|
|
1251
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1252
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1251
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1252
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1253
1253
|
};
|
|
1254
1254
|
ts0216_volume: {
|
|
1255
1255
|
key: string[];
|
|
1256
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1257
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1256
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1257
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1258
1258
|
};
|
|
1259
1259
|
ts0216_alarm: {
|
|
1260
1260
|
key: string[];
|
|
1261
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1261
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1262
1262
|
};
|
|
1263
1263
|
tuya_cover_calibration: {
|
|
1264
1264
|
key: string[];
|
|
1265
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1265
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1266
1266
|
state: {
|
|
1267
1267
|
[x: string]: unknown;
|
|
1268
1268
|
};
|
|
1269
1269
|
}>;
|
|
1270
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1270
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1271
1271
|
};
|
|
1272
1272
|
tuya_cover_reversal: {
|
|
1273
1273
|
key: string[];
|
|
1274
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1274
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1275
1275
|
state: {
|
|
1276
1276
|
motor_reversal: unknown;
|
|
1277
1277
|
};
|
|
1278
1278
|
}>;
|
|
1279
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1279
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1280
1280
|
};
|
|
1281
1281
|
moes_cover_calibration: {
|
|
1282
1282
|
key: string[];
|
|
1283
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1283
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1284
1284
|
state: {
|
|
1285
1285
|
calibration_time: number;
|
|
1286
1286
|
};
|
|
1287
1287
|
}>;
|
|
1288
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1288
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1289
1289
|
};
|
|
1290
1290
|
ZM35HQ_attr: {
|
|
1291
1291
|
key: string[];
|
|
1292
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1293
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1292
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1293
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1294
1294
|
};
|
|
1295
1295
|
TS0210_sensitivity: {
|
|
1296
1296
|
key: string[];
|
|
1297
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1297
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1298
1298
|
state: {
|
|
1299
1299
|
sensitivity: unknown;
|
|
1300
1300
|
};
|
|
@@ -1302,105 +1302,105 @@ declare const converters: {
|
|
|
1302
1302
|
};
|
|
1303
1303
|
viessmann_window_open: {
|
|
1304
1304
|
key: string[];
|
|
1305
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1305
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1306
1306
|
};
|
|
1307
1307
|
viessmann_window_open_force: {
|
|
1308
1308
|
key: string[];
|
|
1309
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1309
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1310
1310
|
state: {
|
|
1311
1311
|
window_open_force: boolean;
|
|
1312
1312
|
};
|
|
1313
1313
|
}>;
|
|
1314
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1314
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1315
1315
|
};
|
|
1316
1316
|
viessmann_assembly_mode: {
|
|
1317
1317
|
key: string[];
|
|
1318
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1318
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1319
1319
|
};
|
|
1320
1320
|
dawondns_only_off: {
|
|
1321
1321
|
key: string[];
|
|
1322
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1323
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1322
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1323
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1324
1324
|
};
|
|
1325
1325
|
idlock_master_pin_mode: {
|
|
1326
1326
|
key: string[];
|
|
1327
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1327
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1328
1328
|
state: {
|
|
1329
1329
|
master_pin_mode: unknown;
|
|
1330
1330
|
};
|
|
1331
1331
|
}>;
|
|
1332
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1332
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1333
1333
|
};
|
|
1334
1334
|
idlock_rfid_enable: {
|
|
1335
1335
|
key: string[];
|
|
1336
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1336
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1337
1337
|
state: {
|
|
1338
1338
|
rfid_enable: unknown;
|
|
1339
1339
|
};
|
|
1340
1340
|
}>;
|
|
1341
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1341
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1342
1342
|
};
|
|
1343
1343
|
idlock_service_mode: {
|
|
1344
1344
|
key: string[];
|
|
1345
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1345
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1346
1346
|
state: {
|
|
1347
1347
|
service_mode: unknown;
|
|
1348
1348
|
};
|
|
1349
1349
|
}>;
|
|
1350
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1350
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1351
1351
|
};
|
|
1352
1352
|
idlock_lock_mode: {
|
|
1353
1353
|
key: string[];
|
|
1354
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1354
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1355
1355
|
state: {
|
|
1356
1356
|
lock_mode: unknown;
|
|
1357
1357
|
};
|
|
1358
1358
|
}>;
|
|
1359
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1359
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1360
1360
|
};
|
|
1361
1361
|
idlock_relock_enabled: {
|
|
1362
1362
|
key: string[];
|
|
1363
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1363
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1364
1364
|
state: {
|
|
1365
1365
|
relock_enabled: unknown;
|
|
1366
1366
|
};
|
|
1367
1367
|
}>;
|
|
1368
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1368
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1369
1369
|
};
|
|
1370
1370
|
schneider_pilot_mode: {
|
|
1371
1371
|
key: string[];
|
|
1372
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1372
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1373
1373
|
state: {
|
|
1374
1374
|
schneider_pilot_mode: unknown;
|
|
1375
1375
|
};
|
|
1376
1376
|
}>;
|
|
1377
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1377
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1378
1378
|
};
|
|
1379
1379
|
schneider_dimmer_mode: {
|
|
1380
1380
|
key: string[];
|
|
1381
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1381
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1382
1382
|
state: {
|
|
1383
1383
|
dimmer_mode: unknown;
|
|
1384
1384
|
};
|
|
1385
1385
|
}>;
|
|
1386
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1386
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1387
1387
|
};
|
|
1388
1388
|
wiser_dimmer_mode: {
|
|
1389
1389
|
key: string[];
|
|
1390
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1390
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1391
1391
|
state: {
|
|
1392
1392
|
dimmer_mode: unknown;
|
|
1393
1393
|
};
|
|
1394
1394
|
}>;
|
|
1395
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1395
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1396
1396
|
};
|
|
1397
1397
|
schneider_temperature_measured_value: {
|
|
1398
1398
|
key: string[];
|
|
1399
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1399
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1400
1400
|
};
|
|
1401
1401
|
schneider_thermostat_system_mode: {
|
|
1402
1402
|
key: string[];
|
|
1403
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1403
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1404
1404
|
state: {
|
|
1405
1405
|
system_mode: unknown;
|
|
1406
1406
|
};
|
|
@@ -1408,7 +1408,7 @@ declare const converters: {
|
|
|
1408
1408
|
};
|
|
1409
1409
|
schneider_thermostat_occupied_heating_setpoint: {
|
|
1410
1410
|
key: string[];
|
|
1411
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1411
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1412
1412
|
state: {
|
|
1413
1413
|
occupied_heating_setpoint: number;
|
|
1414
1414
|
};
|
|
@@ -1416,7 +1416,7 @@ declare const converters: {
|
|
|
1416
1416
|
};
|
|
1417
1417
|
schneider_thermostat_control_sequence_of_operation: {
|
|
1418
1418
|
key: string[];
|
|
1419
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1419
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1420
1420
|
state: {
|
|
1421
1421
|
control_sequence_of_operation: unknown;
|
|
1422
1422
|
};
|
|
@@ -1424,7 +1424,7 @@ declare const converters: {
|
|
|
1424
1424
|
};
|
|
1425
1425
|
schneider_thermostat_pi_heating_demand: {
|
|
1426
1426
|
key: string[];
|
|
1427
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1427
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1428
1428
|
state: {
|
|
1429
1429
|
pi_heating_demand: unknown;
|
|
1430
1430
|
};
|
|
@@ -1432,7 +1432,7 @@ declare const converters: {
|
|
|
1432
1432
|
};
|
|
1433
1433
|
schneider_thermostat_keypad_lockout: {
|
|
1434
1434
|
key: string[];
|
|
1435
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1435
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1436
1436
|
state: {
|
|
1437
1437
|
keypad_lockout: unknown;
|
|
1438
1438
|
};
|
|
@@ -1440,34 +1440,34 @@ declare const converters: {
|
|
|
1440
1440
|
};
|
|
1441
1441
|
wiser_fip_setting: {
|
|
1442
1442
|
key: string[];
|
|
1443
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1443
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1444
1444
|
state: {
|
|
1445
1445
|
fip_setting: unknown;
|
|
1446
1446
|
};
|
|
1447
1447
|
}>;
|
|
1448
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1448
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1449
1449
|
};
|
|
1450
1450
|
wiser_hact_config: {
|
|
1451
1451
|
key: string[];
|
|
1452
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1452
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1453
1453
|
state: {
|
|
1454
1454
|
hact_config: unknown;
|
|
1455
1455
|
};
|
|
1456
1456
|
}>;
|
|
1457
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1457
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1458
1458
|
};
|
|
1459
1459
|
wiser_zone_mode: {
|
|
1460
1460
|
key: string[];
|
|
1461
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1461
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1462
1462
|
state: {
|
|
1463
1463
|
zone_mode: unknown;
|
|
1464
1464
|
};
|
|
1465
1465
|
}>;
|
|
1466
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1466
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1467
1467
|
};
|
|
1468
1468
|
wiser_vact_calibrate_valve: {
|
|
1469
1469
|
key: string[];
|
|
1470
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1470
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1471
1471
|
state: {
|
|
1472
1472
|
calibrate_valve: unknown;
|
|
1473
1473
|
};
|
|
@@ -1475,7 +1475,7 @@ declare const converters: {
|
|
|
1475
1475
|
};
|
|
1476
1476
|
wiser_sed_zone_mode: {
|
|
1477
1477
|
key: string[];
|
|
1478
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1478
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1479
1479
|
state: {
|
|
1480
1480
|
zone_mode: unknown;
|
|
1481
1481
|
};
|
|
@@ -1483,7 +1483,7 @@ declare const converters: {
|
|
|
1483
1483
|
};
|
|
1484
1484
|
wiser_sed_occupied_heating_setpoint: {
|
|
1485
1485
|
key: string[];
|
|
1486
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1486
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1487
1487
|
state: {
|
|
1488
1488
|
occupied_heating_setpoint: number;
|
|
1489
1489
|
};
|
|
@@ -1491,7 +1491,7 @@ declare const converters: {
|
|
|
1491
1491
|
};
|
|
1492
1492
|
wiser_sed_thermostat_local_temperature_calibration: {
|
|
1493
1493
|
key: string[];
|
|
1494
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1494
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1495
1495
|
state: {
|
|
1496
1496
|
local_temperature_calibration: number;
|
|
1497
1497
|
};
|
|
@@ -1499,7 +1499,7 @@ declare const converters: {
|
|
|
1499
1499
|
};
|
|
1500
1500
|
wiser_sed_thermostat_keypad_lockout: {
|
|
1501
1501
|
key: string[];
|
|
1502
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1502
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1503
1503
|
state: {
|
|
1504
1504
|
keypad_lockout: unknown;
|
|
1505
1505
|
};
|
|
@@ -1507,71 +1507,62 @@ declare const converters: {
|
|
|
1507
1507
|
};
|
|
1508
1508
|
sihas_set_people: {
|
|
1509
1509
|
key: string[];
|
|
1510
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1511
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1510
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1511
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1512
1512
|
};
|
|
1513
1513
|
tuya_operation_mode: {
|
|
1514
1514
|
key: string[];
|
|
1515
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1515
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1516
1516
|
state: {
|
|
1517
1517
|
operation_mode: string;
|
|
1518
1518
|
};
|
|
1519
1519
|
}>;
|
|
1520
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1520
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1521
1521
|
};
|
|
1522
1522
|
led_on_motion: {
|
|
1523
1523
|
key: string[];
|
|
1524
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1524
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1525
1525
|
state: {
|
|
1526
1526
|
led_on_motion: unknown;
|
|
1527
1527
|
};
|
|
1528
1528
|
}>;
|
|
1529
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1530
|
-
};
|
|
1531
|
-
nodon_pilot_wire_mode: {
|
|
1532
|
-
key: string[];
|
|
1533
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1534
|
-
state: {
|
|
1535
|
-
pilot_wire_mode: unknown;
|
|
1536
|
-
};
|
|
1537
|
-
}>;
|
|
1538
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Endpoint | import("zigbee-herdsman/dist/controller/model").Group, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1529
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1539
1530
|
};
|
|
1540
1531
|
ignore_transition: {
|
|
1541
1532
|
key: string[];
|
|
1542
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1533
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1543
1534
|
};
|
|
1544
1535
|
ignore_rate: {
|
|
1545
1536
|
key: string[];
|
|
1546
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1537
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
1547
1538
|
};
|
|
1548
1539
|
__clearStore__: () => void;
|
|
1549
1540
|
on_off: {
|
|
1550
1541
|
key: string[];
|
|
1551
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1542
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1552
1543
|
state: {
|
|
1553
1544
|
state: string;
|
|
1554
1545
|
};
|
|
1555
1546
|
} | {
|
|
1556
1547
|
state?: undefined;
|
|
1557
1548
|
}>;
|
|
1558
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1549
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1559
1550
|
};
|
|
1560
1551
|
light_color: {
|
|
1561
1552
|
key: string[];
|
|
1562
1553
|
options: (exposes.Numeric | exposes.Binary)[];
|
|
1563
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1554
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1564
1555
|
state: KeyValueAny;
|
|
1565
1556
|
}>;
|
|
1566
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1557
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1567
1558
|
};
|
|
1568
1559
|
light_colortemp: {
|
|
1569
1560
|
key: string[];
|
|
1570
1561
|
options: (exposes.Numeric | exposes.Binary)[];
|
|
1571
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1562
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
1572
1563
|
state: KeyValueAny;
|
|
1573
1564
|
}>;
|
|
1574
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
1565
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
1575
1566
|
};
|
|
1576
1567
|
};
|
|
1577
1568
|
export default converters;
|