iobroker.zigbee 1.6.16 → 1.6.17
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/.eslintignore +1 -1
- package/.eslintrc.json +36 -36
- package/.github/FUNDING.yml +3 -3
- package/.github/stale.yml +13 -13
- package/.github/workflows/test-and-release.yml +151 -151
- package/.travis/wiki.sh +27 -27
- package/LICENSE +21 -21
- package/README.md +425 -424
- package/admin/adapter-settings.js +244 -244
- package/admin/admin.js +2926 -2926
- package/admin/img/philips_hue_lom001.png +0 -0
- package/admin/index.html +159 -159
- package/admin/index_m.html +1161 -1158
- package/admin/moment.min.js +1 -1
- package/admin/shuffle.min.js +2 -2
- package/admin/tab_m.html +944 -944
- package/admin/vis-network.min.js +26 -26
- package/admin/words.js +109 -108
- package/docs/de/readme.md +27 -27
- package/docs/en/readme.md +30 -30
- package/docs/flashing_via_arduino_(en).md +110 -110
- package/docs/ru/readme.md +28 -28
- package/docs/tutorial/groups-1.png +0 -0
- package/docs/tutorial/groups-2.png +0 -0
- package/docs/tutorial/tab-dev-1.png +0 -0
- package/io-package.json +367 -355
- package/lib/backup.js +132 -132
- package/lib/binding.js +325 -325
- package/lib/colors.js +460 -460
- package/lib/commands.js +501 -501
- package/lib/developer.js +148 -148
- package/lib/devices.js +3145 -3144
- package/lib/exclude.js +168 -168
- package/lib/exposes.js +803 -795
- package/lib/groups.js +342 -342
- package/lib/json.js +60 -60
- package/lib/networkmap.js +56 -56
- package/lib/ota.js +179 -179
- package/lib/rgb.js +255 -255
- package/lib/seriallist.js +37 -37
- package/lib/states.js +6416 -6407
- package/lib/statescontroller.js +627 -627
- package/lib/tools.js +54 -54
- package/lib/utils.js +151 -151
- package/lib/zbBaseExtension.js +36 -32
- package/lib/zbDelayedAction.js +152 -152
- package/lib/zbDeviceAvailability.js +321 -318
- package/lib/zbDeviceConfigure.js +152 -152
- package/lib/zbDeviceEvent.js +49 -49
- package/lib/zigbeecontroller.js +946 -946
- package/main.js +42 -3
- package/package.json +77 -77
- package/support/docgen.js +93 -93
package/io-package.json
CHANGED
|
@@ -1,355 +1,367 @@
|
|
|
1
|
-
{
|
|
2
|
-
"common": {
|
|
3
|
-
"name": "zigbee",
|
|
4
|
-
"version": "1.6.
|
|
5
|
-
"news": {
|
|
6
|
-
"1.6.16": {
|
|
7
|
-
"de": "admin dep fix",
|
|
8
|
-
"en": "admin dep fix",
|
|
9
|
-
"ru": "admin dep fix"
|
|
10
|
-
},
|
|
11
|
-
"1.6.15": {
|
|
12
|
-
"de": "Batterie Status wurde geändert",
|
|
13
|
-
"en": "Battery status was changed",
|
|
14
|
-
"ru": "Состояние батареи было изменено"
|
|
15
|
-
},
|
|
16
|
-
"1.6.14": {
|
|
17
|
-
"de": "Gruppen wurden überarbeitet 2",
|
|
18
|
-
"en": "Groups were newly revised 2",
|
|
19
|
-
"ru": "Группы были пересмотрены 2"
|
|
20
|
-
},
|
|
21
|
-
"1.6.13": {
|
|
22
|
-
"de": "zh 0.14.xx",
|
|
23
|
-
"en": "zh 0.14.xx",
|
|
24
|
-
"ru": "zh 0.14.xx"
|
|
25
|
-
},
|
|
26
|
-
"1.6.12": {
|
|
27
|
-
"de": "Gruppen wurden überarbeitet",
|
|
28
|
-
"en": "Groups were newly revised",
|
|
29
|
-
"ru": "Группы были пересмотрены"
|
|
30
|
-
},
|
|
31
|
-
"1.6.11": {
|
|
32
|
-
"en": "Some changes for tuya-devices"
|
|
33
|
-
},
|
|
34
|
-
"1.6.10": {
|
|
35
|
-
"en": "Small herdsman fixes and new devices"
|
|
36
|
-
},
|
|
37
|
-
"1.6.6": {
|
|
38
|
-
"en": "fix admin"
|
|
39
|
-
},
|
|
40
|
-
"1.6.5": {
|
|
41
|
-
"en": "Some fixes and updates"
|
|
42
|
-
},
|
|
43
|
-
"1.6.3": {
|
|
44
|
-
"en": "Some fixes and updates"
|
|
45
|
-
},
|
|
46
|
-
"1.6.2": {
|
|
47
|
-
"en": "Some fixes and updates"
|
|
48
|
-
},
|
|
49
|
-
"1.6.0": {
|
|
50
|
-
"en": "Improvements and new devices"
|
|
51
|
-
},
|
|
52
|
-
"1.5.6": {
|
|
53
|
-
"en": "Dashboard"
|
|
54
|
-
},
|
|
55
|
-
"1.4.1": {
|
|
56
|
-
"en": "kelvin is added into color_temp",
|
|
57
|
-
"de": "Kelvin wird zu color_temp hinzugefügt",
|
|
58
|
-
"ru": "кельвин добавлен в color_temp",
|
|
59
|
-
"pt": "Kelvin é adicionado em color_temp",
|
|
60
|
-
"nl": "kelvin wordt toegevoegd aan color_temp",
|
|
61
|
-
"fr": "kelvin est ajouté dans color_temp",
|
|
62
|
-
"it": "kelvin viene aggiunto a color_temp",
|
|
63
|
-
"es": "kelvin se agrega a color_temp",
|
|
64
|
-
"pl": "kelvin jest dodawany do color_temp",
|
|
65
|
-
"zh-cn": "将开尔文添加到color_temp"
|
|
66
|
-
},
|
|
67
|
-
"1.2.0": {
|
|
68
|
-
"en": "serialport 9, drop support Node < 10, new identify by model",
|
|
69
|
-
"de": "serialport 9, unterstützung für Node 8 und kleiner gelscöht, neuer identifizierung am model",
|
|
70
|
-
"ru": "serialport 9, drop support Node <10, новая идентификация по модели",
|
|
71
|
-
"pt": "serialport 9, drop support Node <10, nova identificação por modelo",
|
|
72
|
-
"nl": "serialport 9, drop support Node <10, nieuwe identificatie per model",
|
|
73
|
-
"fr": "serialport 9, drop support Node <10, nouvelle identification par modèle",
|
|
74
|
-
"it": "porta seriale 9, supporto drop Node <10, nuova identificazione per modello",
|
|
75
|
-
"es": "serialport 9, drop support Node <10, nueva identificación por modelo",
|
|
76
|
-
"pl": "serialport 9, upuść wsparcie Node <10, nowa identyfikacja według modelu",
|
|
77
|
-
"zh-cn": "串行端口9,删除支持节点<10,通过型号进行新标识"
|
|
78
|
-
},
|
|
79
|
-
"1.1.3": {
|
|
80
|
-
"en": "refactoring devices.js",
|
|
81
|
-
"de": "neustrukturierung devices.js",
|
|
82
|
-
"ru": "рефакторинг devices.js",
|
|
83
|
-
"pt": "refatoração de devices.js",
|
|
84
|
-
"nl": "refactoring devices.js",
|
|
85
|
-
"fr": "refactorisation de devices.js",
|
|
86
|
-
"it": "refactoring devices.js",
|
|
87
|
-
"es": "refactorización de devices.js",
|
|
88
|
-
"pl": "refaktoryzacja devices.js",
|
|
89
|
-
"zh-cn": "重构devices.js"
|
|
90
|
-
},
|
|
91
|
-
"1.1.2": {
|
|
92
|
-
"en": "Fix variable to converter",
|
|
93
|
-
"de": "Variable zum Konverter korrigieren",
|
|
94
|
-
"ru": "Исправить переменную в конвертере",
|
|
95
|
-
"pt": "Fixar variável para conversor",
|
|
96
|
-
"nl": "Fix variabele naar converter",
|
|
97
|
-
"fr": "Fixer la variable au convertisseur",
|
|
98
|
-
"it": "Correggi la variabile al convertitore",
|
|
99
|
-
"es": "Corregir variable al convertidor",
|
|
100
|
-
"pl": "Napraw zmienną do konwertera",
|
|
101
|
-
"zh-cn": "固定变量到转换器"
|
|
102
|
-
},
|
|
103
|
-
"1.1.1": {
|
|
104
|
-
"en": "Fix for fresh flashed chip",
|
|
105
|
-
"de": "Fix für frisch geflashten Chip",
|
|
106
|
-
"ru": "Исправить свежий прошитый чип",
|
|
107
|
-
"pt": "Correção para chip atualizado",
|
|
108
|
-
"nl": "Oplossing voor vers geflitste chip",
|
|
109
|
-
"fr": "Correction de la puce flashée fraîche",
|
|
110
|
-
"it": "Risolto il problema con il chip lampeggiante fresco",
|
|
111
|
-
"es": "Arreglo para chip flasheado nuevo",
|
|
112
|
-
"pl": "Naprawiono świeżo flashowany chip",
|
|
113
|
-
"zh-cn": "修复新的闪存芯片"
|
|
114
|
-
},
|
|
115
|
-
"1.1.0": {
|
|
116
|
-
"en": "New features and experimental deConz/Conbee support",
|
|
117
|
-
"de": "Neue Funktionen und experimentelle deConz / Conbee-Unterstützung",
|
|
118
|
-
"ru": "Новые функции и экспериментальная поддержка deConz / Conbee",
|
|
119
|
-
"pt": "Novos recursos e suporte experimental deConz / Conbee",
|
|
120
|
-
"nl": "Nieuwe functies en experimentele ondersteuning voor deConz / Conbee",
|
|
121
|
-
"fr": "Nouvelles fonctionnalités et prise en charge expérimentale de deConz / Conbee",
|
|
122
|
-
"it": "Nuove funzionalità e supporto sperimentale deConz / Conbee",
|
|
123
|
-
"es": "Nuevas funciones y soporte experimental deConz / Conbee",
|
|
124
|
-
"pl": "Nowe funkcje i eksperymentalna obsługa deConz / Conbee",
|
|
125
|
-
"zh-cn": "新功能和实验性的deConz / Conbee支持"
|
|
126
|
-
},
|
|
127
|
-
"1.0.4": {
|
|
128
|
-
"en": "New devices and fixes",
|
|
129
|
-
"de": "Neue Geräte und Korrekturen",
|
|
130
|
-
"ru": "Новые устройства и исправления",
|
|
131
|
-
"pt": "Novos dispositivos e correções",
|
|
132
|
-
"nl": "Nieuwe apparaten en fixes",
|
|
133
|
-
"fr": "Nouveaux appareils et correctifs",
|
|
134
|
-
"it": "Nuovi dispositivi e correzioni",
|
|
135
|
-
"es": "Nuevos dispositivos y arreglos",
|
|
136
|
-
"pl": "Nowe urządzenia i poprawki",
|
|
137
|
-
"zh-cn": "新设备和修复"
|
|
138
|
-
},
|
|
139
|
-
"1.0.0": {
|
|
140
|
-
"en": "Powered by Zigbee-Herdsman",
|
|
141
|
-
"de": "Angetrieben von Zigbee-Herdsman",
|
|
142
|
-
"ru": "При поддержке Zigbee-Herdsman",
|
|
143
|
-
"pt": "Desenvolvido por Zigbee-Herdsman",
|
|
144
|
-
"nl": "Aangedreven door Zigbee-Herdsman",
|
|
145
|
-
"fr": "Propulsé par Zigbee-Herdsman",
|
|
146
|
-
"it": "Alimentato da Zigbee-Herdsman",
|
|
147
|
-
"es": "Desarrollado por Zigbee-Herdsman",
|
|
148
|
-
"pl": "Obsługiwane przez Zigbee-Herdsman",
|
|
149
|
-
"zh-cn": "由Zigbee-Herdsman提供支持"
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
"title": "Zigbee",
|
|
153
|
-
"titleLang": {
|
|
154
|
-
"en": "Zigbee",
|
|
155
|
-
"ru": "Zigbee",
|
|
156
|
-
"de": "ZigBee",
|
|
157
|
-
"pt": "Zigbee",
|
|
158
|
-
"nl": "Zigbee",
|
|
159
|
-
"fr": "Zigbee",
|
|
160
|
-
"it": "Zigbee",
|
|
161
|
-
"es": "zigbee",
|
|
162
|
-
"pl": "Zigbee",
|
|
163
|
-
"zh-cn": "Zigbee"
|
|
164
|
-
},
|
|
165
|
-
"desc": {
|
|
166
|
-
"en": "Zigbee adapter for Xiaomi (and other) devices via TI cc2531/cc2530",
|
|
167
|
-
"ru": "Zigbee адаптер для Xiaomi (и других) устройств через TI cc2531/cc2530",
|
|
168
|
-
"de": "ZigBee-Adapter für Xiaomi (und andere) Geräte über TI cc2531 / cc2530",
|
|
169
|
-
"pt": "Adaptador Zigbee para dispositivos Xiaomi (e outros) via TI cc2531 / cc2530",
|
|
170
|
-
"nl": "Zigbee-adapter voor Xiaomi (en andere) apparaten via TI cc2531 / cc2530",
|
|
171
|
-
"fr": "Adaptateur Zigbee pour périphériques Xiaomi (et autres) via TI cc2531 / cc2530",
|
|
172
|
-
"it": "Adattatore Zigbee per dispositivi Xiaomi (e altri) tramite TI cc2531 / cc2530",
|
|
173
|
-
"es": "Adaptador Zigbee para dispositivos Xiaomi (y otros) a través de TI cc2531 / cc2530",
|
|
174
|
-
"pl": "Adapter Zigbee do urządzeń Xiaomi (i innych) za pośrednictwem TI cc2531 / cc2530",
|
|
175
|
-
"zh-cn": "适用于小米(和其他)设备的Zigbee适配器,通过TI cc2531 / cc2530"
|
|
176
|
-
},
|
|
177
|
-
"authors": [
|
|
178
|
-
"Kirov Ilya<kirovilya@gmail.com>"
|
|
179
|
-
],
|
|
180
|
-
"license": "MIT",
|
|
181
|
-
"docs": {
|
|
182
|
-
"en": "docs/en/readme.md",
|
|
183
|
-
"ru": "docs/ru/readme.md",
|
|
184
|
-
"de": "docs/de/readme.md",
|
|
185
|
-
"es": "docs/es/readme.md",
|
|
186
|
-
"it": "docs/it/readme.md",
|
|
187
|
-
"fr": "docs/fr/readme.md",
|
|
188
|
-
"nl": "docs/nl/readme.md",
|
|
189
|
-
"pt": "docs/pt/readme.md"
|
|
190
|
-
},
|
|
191
|
-
"platform": "Javascript/Node.js",
|
|
192
|
-
"mode": "daemon",
|
|
193
|
-
"icon": "zigbee.png",
|
|
194
|
-
"extIcon": "https://raw.githubusercontent.com/ioBroker/ioBroker.zigbee/master/admin/zigbee.png",
|
|
195
|
-
"enabled": true,
|
|
196
|
-
"keywords": [
|
|
197
|
-
"zigbee",
|
|
198
|
-
"xiaomi",
|
|
199
|
-
"cc2531",
|
|
200
|
-
"cc2530",
|
|
201
|
-
"cc2538",
|
|
202
|
-
"cc2652",
|
|
203
|
-
"deconz",
|
|
204
|
-
"conbee",
|
|
205
|
-
"raspbee"
|
|
206
|
-
],
|
|
207
|
-
"readme": "https://github.com/ioBroker/ioBroker.zigbee/blob/master/README.md",
|
|
208
|
-
"loglevel": "info",
|
|
209
|
-
"type": "hardware",
|
|
210
|
-
"materialize": true,
|
|
211
|
-
"messagebox": true,
|
|
212
|
-
"stopBeforeUpdate": true,
|
|
213
|
-
"dataFolder": "zigbee_%INSTANCE%",
|
|
214
|
-
"compact": true,
|
|
215
|
-
"materializeTab": true,
|
|
216
|
-
"connectionType": "local",
|
|
217
|
-
"dataSource": "push",
|
|
218
|
-
"tier": 2,
|
|
219
|
-
"adminTab": {
|
|
220
|
-
"name": {
|
|
221
|
-
"en": "Zigbee",
|
|
222
|
-
"de": "Zigbee",
|
|
223
|
-
"ru": "Zigbee",
|
|
224
|
-
"pt": "Zigbee",
|
|
225
|
-
"nl": "Zigbee",
|
|
226
|
-
"fr": "Zigbee",
|
|
227
|
-
"it": "Zigbee",
|
|
228
|
-
"es": "Zigbee",
|
|
229
|
-
"pl": "Zigbee",
|
|
230
|
-
"zh-cn": "Zigbee"
|
|
231
|
-
},
|
|
232
|
-
"fa-icon": "</i><img style='width:24px;margin-bottom:-6px;' src='/adapter/zigbee/zigbee.svg'><i>"
|
|
233
|
-
},
|
|
234
|
-
"plugins": {
|
|
235
|
-
"sentry": {
|
|
236
|
-
"dsn": "https://c829e2ad996d45d1bdb2247805699883@o831057.ingest.sentry.io/5812498"
|
|
237
|
-
}
|
|
238
|
-
},
|
|
239
|
-
"globalDependencies": [
|
|
240
|
-
{
|
|
241
|
-
"admin": ">=5.1.25"
|
|
242
|
-
}
|
|
243
|
-
],
|
|
244
|
-
"dependencies": [
|
|
245
|
-
{
|
|
246
|
-
"js-controller": ">=3.3.0"
|
|
247
|
-
}
|
|
248
|
-
]
|
|
249
|
-
},
|
|
250
|
-
"native": {
|
|
251
|
-
"port": "",
|
|
252
|
-
"panID": 6754,
|
|
253
|
-
"extPanID": "DDDDDDDDDDDDDDDD",
|
|
254
|
-
"channel": 11,
|
|
255
|
-
"disableLed": false,
|
|
256
|
-
"precfgkey": "01030507090B0D0F00020406080A0C0D",
|
|
257
|
-
"countDown": 60,
|
|
258
|
-
"adapterType": "zstack",
|
|
259
|
-
"debugHerdsman": false,
|
|
260
|
-
"disablePing": false,
|
|
261
|
-
"external": "",
|
|
262
|
-
"startWithInconsistent": false
|
|
263
|
-
},
|
|
264
|
-
"instanceObjects": [
|
|
265
|
-
{
|
|
266
|
-
"_id": "exclude",
|
|
267
|
-
"type": "channel",
|
|
268
|
-
"common": {
|
|
269
|
-
"name": "exclude devs from devices.js"
|
|
270
|
-
},
|
|
271
|
-
"native": {}
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
"_id": "exclude.all",
|
|
275
|
-
"type": "state",
|
|
276
|
-
"common": {
|
|
277
|
-
"name": "all",
|
|
278
|
-
"type": "string",
|
|
279
|
-
"read": true,
|
|
280
|
-
"write": true,
|
|
281
|
-
"def": "[]"
|
|
282
|
-
},
|
|
283
|
-
"native": {}
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"_id": "info",
|
|
287
|
-
"type": "channel",
|
|
288
|
-
"common": {
|
|
289
|
-
"name": "Information"
|
|
290
|
-
},
|
|
291
|
-
"native": {}
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"_id": "info.connection",
|
|
295
|
-
"type": "state",
|
|
296
|
-
"common": {
|
|
297
|
-
"role": "indicator.connected",
|
|
298
|
-
"name": "If connected to zigbee device",
|
|
299
|
-
"type": "boolean",
|
|
300
|
-
"read": true,
|
|
301
|
-
"write": false,
|
|
302
|
-
"def": false
|
|
303
|
-
},
|
|
304
|
-
"native": {}
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
"_id": "info.pairingMode",
|
|
308
|
-
"type": "state",
|
|
309
|
-
"common": {
|
|
310
|
-
"name": "Pairing mode",
|
|
311
|
-
"type": "boolean",
|
|
312
|
-
"read": true,
|
|
313
|
-
"write": false,
|
|
314
|
-
"def": false
|
|
315
|
-
},
|
|
316
|
-
"native": {}
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
"_id": "info.pairingCountdown",
|
|
320
|
-
"type": "state",
|
|
321
|
-
"common": {
|
|
322
|
-
"name": "Pairing countdown",
|
|
323
|
-
"type": "number",
|
|
324
|
-
"read": true,
|
|
325
|
-
"write": false,
|
|
326
|
-
"def": 0
|
|
327
|
-
},
|
|
328
|
-
"native": {}
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"_id": "info.pairingMessage",
|
|
332
|
-
"type": "state",
|
|
333
|
-
"common": {
|
|
334
|
-
"name": "Pairing message",
|
|
335
|
-
"type": "string",
|
|
336
|
-
"read": true,
|
|
337
|
-
"write": false,
|
|
338
|
-
"def": ""
|
|
339
|
-
},
|
|
340
|
-
"native": {}
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"_id": "info.groups",
|
|
344
|
-
"type": "state",
|
|
345
|
-
"common": {
|
|
346
|
-
"name": "Groups",
|
|
347
|
-
"type": "string",
|
|
348
|
-
"read": true,
|
|
349
|
-
"write": false,
|
|
350
|
-
"def": ""
|
|
351
|
-
},
|
|
352
|
-
"native": {}
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"name": "zigbee",
|
|
4
|
+
"version": "1.6.17",
|
|
5
|
+
"news": {
|
|
6
|
+
"1.6.16": {
|
|
7
|
+
"de": "admin dep fix",
|
|
8
|
+
"en": "admin dep fix",
|
|
9
|
+
"ru": "admin dep fix"
|
|
10
|
+
},
|
|
11
|
+
"1.6.15": {
|
|
12
|
+
"de": "Batterie Status wurde geändert",
|
|
13
|
+
"en": "Battery status was changed",
|
|
14
|
+
"ru": "Состояние батареи было изменено"
|
|
15
|
+
},
|
|
16
|
+
"1.6.14": {
|
|
17
|
+
"de": "Gruppen wurden überarbeitet 2",
|
|
18
|
+
"en": "Groups were newly revised 2",
|
|
19
|
+
"ru": "Группы были пересмотрены 2"
|
|
20
|
+
},
|
|
21
|
+
"1.6.13": {
|
|
22
|
+
"de": "zh 0.14.xx",
|
|
23
|
+
"en": "zh 0.14.xx",
|
|
24
|
+
"ru": "zh 0.14.xx"
|
|
25
|
+
},
|
|
26
|
+
"1.6.12": {
|
|
27
|
+
"de": "Gruppen wurden überarbeitet",
|
|
28
|
+
"en": "Groups were newly revised",
|
|
29
|
+
"ru": "Группы были пересмотрены"
|
|
30
|
+
},
|
|
31
|
+
"1.6.11": {
|
|
32
|
+
"en": "Some changes for tuya-devices"
|
|
33
|
+
},
|
|
34
|
+
"1.6.10": {
|
|
35
|
+
"en": "Small herdsman fixes and new devices"
|
|
36
|
+
},
|
|
37
|
+
"1.6.6": {
|
|
38
|
+
"en": "fix admin"
|
|
39
|
+
},
|
|
40
|
+
"1.6.5": {
|
|
41
|
+
"en": "Some fixes and updates"
|
|
42
|
+
},
|
|
43
|
+
"1.6.3": {
|
|
44
|
+
"en": "Some fixes and updates"
|
|
45
|
+
},
|
|
46
|
+
"1.6.2": {
|
|
47
|
+
"en": "Some fixes and updates"
|
|
48
|
+
},
|
|
49
|
+
"1.6.0": {
|
|
50
|
+
"en": "Improvements and new devices"
|
|
51
|
+
},
|
|
52
|
+
"1.5.6": {
|
|
53
|
+
"en": "Dashboard"
|
|
54
|
+
},
|
|
55
|
+
"1.4.1": {
|
|
56
|
+
"en": "kelvin is added into color_temp",
|
|
57
|
+
"de": "Kelvin wird zu color_temp hinzugefügt",
|
|
58
|
+
"ru": "кельвин добавлен в color_temp",
|
|
59
|
+
"pt": "Kelvin é adicionado em color_temp",
|
|
60
|
+
"nl": "kelvin wordt toegevoegd aan color_temp",
|
|
61
|
+
"fr": "kelvin est ajouté dans color_temp",
|
|
62
|
+
"it": "kelvin viene aggiunto a color_temp",
|
|
63
|
+
"es": "kelvin se agrega a color_temp",
|
|
64
|
+
"pl": "kelvin jest dodawany do color_temp",
|
|
65
|
+
"zh-cn": "将开尔文添加到color_temp"
|
|
66
|
+
},
|
|
67
|
+
"1.2.0": {
|
|
68
|
+
"en": "serialport 9, drop support Node < 10, new identify by model",
|
|
69
|
+
"de": "serialport 9, unterstützung für Node 8 und kleiner gelscöht, neuer identifizierung am model",
|
|
70
|
+
"ru": "serialport 9, drop support Node <10, новая идентификация по модели",
|
|
71
|
+
"pt": "serialport 9, drop support Node <10, nova identificação por modelo",
|
|
72
|
+
"nl": "serialport 9, drop support Node <10, nieuwe identificatie per model",
|
|
73
|
+
"fr": "serialport 9, drop support Node <10, nouvelle identification par modèle",
|
|
74
|
+
"it": "porta seriale 9, supporto drop Node <10, nuova identificazione per modello",
|
|
75
|
+
"es": "serialport 9, drop support Node <10, nueva identificación por modelo",
|
|
76
|
+
"pl": "serialport 9, upuść wsparcie Node <10, nowa identyfikacja według modelu",
|
|
77
|
+
"zh-cn": "串行端口9,删除支持节点<10,通过型号进行新标识"
|
|
78
|
+
},
|
|
79
|
+
"1.1.3": {
|
|
80
|
+
"en": "refactoring devices.js",
|
|
81
|
+
"de": "neustrukturierung devices.js",
|
|
82
|
+
"ru": "рефакторинг devices.js",
|
|
83
|
+
"pt": "refatoração de devices.js",
|
|
84
|
+
"nl": "refactoring devices.js",
|
|
85
|
+
"fr": "refactorisation de devices.js",
|
|
86
|
+
"it": "refactoring devices.js",
|
|
87
|
+
"es": "refactorización de devices.js",
|
|
88
|
+
"pl": "refaktoryzacja devices.js",
|
|
89
|
+
"zh-cn": "重构devices.js"
|
|
90
|
+
},
|
|
91
|
+
"1.1.2": {
|
|
92
|
+
"en": "Fix variable to converter",
|
|
93
|
+
"de": "Variable zum Konverter korrigieren",
|
|
94
|
+
"ru": "Исправить переменную в конвертере",
|
|
95
|
+
"pt": "Fixar variável para conversor",
|
|
96
|
+
"nl": "Fix variabele naar converter",
|
|
97
|
+
"fr": "Fixer la variable au convertisseur",
|
|
98
|
+
"it": "Correggi la variabile al convertitore",
|
|
99
|
+
"es": "Corregir variable al convertidor",
|
|
100
|
+
"pl": "Napraw zmienną do konwertera",
|
|
101
|
+
"zh-cn": "固定变量到转换器"
|
|
102
|
+
},
|
|
103
|
+
"1.1.1": {
|
|
104
|
+
"en": "Fix for fresh flashed chip",
|
|
105
|
+
"de": "Fix für frisch geflashten Chip",
|
|
106
|
+
"ru": "Исправить свежий прошитый чип",
|
|
107
|
+
"pt": "Correção para chip atualizado",
|
|
108
|
+
"nl": "Oplossing voor vers geflitste chip",
|
|
109
|
+
"fr": "Correction de la puce flashée fraîche",
|
|
110
|
+
"it": "Risolto il problema con il chip lampeggiante fresco",
|
|
111
|
+
"es": "Arreglo para chip flasheado nuevo",
|
|
112
|
+
"pl": "Naprawiono świeżo flashowany chip",
|
|
113
|
+
"zh-cn": "修复新的闪存芯片"
|
|
114
|
+
},
|
|
115
|
+
"1.1.0": {
|
|
116
|
+
"en": "New features and experimental deConz/Conbee support",
|
|
117
|
+
"de": "Neue Funktionen und experimentelle deConz / Conbee-Unterstützung",
|
|
118
|
+
"ru": "Новые функции и экспериментальная поддержка deConz / Conbee",
|
|
119
|
+
"pt": "Novos recursos e suporte experimental deConz / Conbee",
|
|
120
|
+
"nl": "Nieuwe functies en experimentele ondersteuning voor deConz / Conbee",
|
|
121
|
+
"fr": "Nouvelles fonctionnalités et prise en charge expérimentale de deConz / Conbee",
|
|
122
|
+
"it": "Nuove funzionalità e supporto sperimentale deConz / Conbee",
|
|
123
|
+
"es": "Nuevas funciones y soporte experimental deConz / Conbee",
|
|
124
|
+
"pl": "Nowe funkcje i eksperymentalna obsługa deConz / Conbee",
|
|
125
|
+
"zh-cn": "新功能和实验性的deConz / Conbee支持"
|
|
126
|
+
},
|
|
127
|
+
"1.0.4": {
|
|
128
|
+
"en": "New devices and fixes",
|
|
129
|
+
"de": "Neue Geräte und Korrekturen",
|
|
130
|
+
"ru": "Новые устройства и исправления",
|
|
131
|
+
"pt": "Novos dispositivos e correções",
|
|
132
|
+
"nl": "Nieuwe apparaten en fixes",
|
|
133
|
+
"fr": "Nouveaux appareils et correctifs",
|
|
134
|
+
"it": "Nuovi dispositivi e correzioni",
|
|
135
|
+
"es": "Nuevos dispositivos y arreglos",
|
|
136
|
+
"pl": "Nowe urządzenia i poprawki",
|
|
137
|
+
"zh-cn": "新设备和修复"
|
|
138
|
+
},
|
|
139
|
+
"1.0.0": {
|
|
140
|
+
"en": "Powered by Zigbee-Herdsman",
|
|
141
|
+
"de": "Angetrieben von Zigbee-Herdsman",
|
|
142
|
+
"ru": "При поддержке Zigbee-Herdsman",
|
|
143
|
+
"pt": "Desenvolvido por Zigbee-Herdsman",
|
|
144
|
+
"nl": "Aangedreven door Zigbee-Herdsman",
|
|
145
|
+
"fr": "Propulsé par Zigbee-Herdsman",
|
|
146
|
+
"it": "Alimentato da Zigbee-Herdsman",
|
|
147
|
+
"es": "Desarrollado por Zigbee-Herdsman",
|
|
148
|
+
"pl": "Obsługiwane przez Zigbee-Herdsman",
|
|
149
|
+
"zh-cn": "由Zigbee-Herdsman提供支持"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"title": "Zigbee",
|
|
153
|
+
"titleLang": {
|
|
154
|
+
"en": "Zigbee",
|
|
155
|
+
"ru": "Zigbee",
|
|
156
|
+
"de": "ZigBee",
|
|
157
|
+
"pt": "Zigbee",
|
|
158
|
+
"nl": "Zigbee",
|
|
159
|
+
"fr": "Zigbee",
|
|
160
|
+
"it": "Zigbee",
|
|
161
|
+
"es": "zigbee",
|
|
162
|
+
"pl": "Zigbee",
|
|
163
|
+
"zh-cn": "Zigbee"
|
|
164
|
+
},
|
|
165
|
+
"desc": {
|
|
166
|
+
"en": "Zigbee adapter for Xiaomi (and other) devices via TI cc2531/cc2530",
|
|
167
|
+
"ru": "Zigbee адаптер для Xiaomi (и других) устройств через TI cc2531/cc2530",
|
|
168
|
+
"de": "ZigBee-Adapter für Xiaomi (und andere) Geräte über TI cc2531 / cc2530",
|
|
169
|
+
"pt": "Adaptador Zigbee para dispositivos Xiaomi (e outros) via TI cc2531 / cc2530",
|
|
170
|
+
"nl": "Zigbee-adapter voor Xiaomi (en andere) apparaten via TI cc2531 / cc2530",
|
|
171
|
+
"fr": "Adaptateur Zigbee pour périphériques Xiaomi (et autres) via TI cc2531 / cc2530",
|
|
172
|
+
"it": "Adattatore Zigbee per dispositivi Xiaomi (e altri) tramite TI cc2531 / cc2530",
|
|
173
|
+
"es": "Adaptador Zigbee para dispositivos Xiaomi (y otros) a través de TI cc2531 / cc2530",
|
|
174
|
+
"pl": "Adapter Zigbee do urządzeń Xiaomi (i innych) za pośrednictwem TI cc2531 / cc2530",
|
|
175
|
+
"zh-cn": "适用于小米(和其他)设备的Zigbee适配器,通过TI cc2531 / cc2530"
|
|
176
|
+
},
|
|
177
|
+
"authors": [
|
|
178
|
+
"Kirov Ilya<kirovilya@gmail.com>"
|
|
179
|
+
],
|
|
180
|
+
"license": "MIT",
|
|
181
|
+
"docs": {
|
|
182
|
+
"en": "docs/en/readme.md",
|
|
183
|
+
"ru": "docs/ru/readme.md",
|
|
184
|
+
"de": "docs/de/readme.md",
|
|
185
|
+
"es": "docs/es/readme.md",
|
|
186
|
+
"it": "docs/it/readme.md",
|
|
187
|
+
"fr": "docs/fr/readme.md",
|
|
188
|
+
"nl": "docs/nl/readme.md",
|
|
189
|
+
"pt": "docs/pt/readme.md"
|
|
190
|
+
},
|
|
191
|
+
"platform": "Javascript/Node.js",
|
|
192
|
+
"mode": "daemon",
|
|
193
|
+
"icon": "zigbee.png",
|
|
194
|
+
"extIcon": "https://raw.githubusercontent.com/ioBroker/ioBroker.zigbee/master/admin/zigbee.png",
|
|
195
|
+
"enabled": true,
|
|
196
|
+
"keywords": [
|
|
197
|
+
"zigbee",
|
|
198
|
+
"xiaomi",
|
|
199
|
+
"cc2531",
|
|
200
|
+
"cc2530",
|
|
201
|
+
"cc2538",
|
|
202
|
+
"cc2652",
|
|
203
|
+
"deconz",
|
|
204
|
+
"conbee",
|
|
205
|
+
"raspbee"
|
|
206
|
+
],
|
|
207
|
+
"readme": "https://github.com/ioBroker/ioBroker.zigbee/blob/master/README.md",
|
|
208
|
+
"loglevel": "info",
|
|
209
|
+
"type": "hardware",
|
|
210
|
+
"materialize": true,
|
|
211
|
+
"messagebox": true,
|
|
212
|
+
"stopBeforeUpdate": true,
|
|
213
|
+
"dataFolder": "zigbee_%INSTANCE%",
|
|
214
|
+
"compact": true,
|
|
215
|
+
"materializeTab": true,
|
|
216
|
+
"connectionType": "local",
|
|
217
|
+
"dataSource": "push",
|
|
218
|
+
"tier": 2,
|
|
219
|
+
"adminTab": {
|
|
220
|
+
"name": {
|
|
221
|
+
"en": "Zigbee",
|
|
222
|
+
"de": "Zigbee",
|
|
223
|
+
"ru": "Zigbee",
|
|
224
|
+
"pt": "Zigbee",
|
|
225
|
+
"nl": "Zigbee",
|
|
226
|
+
"fr": "Zigbee",
|
|
227
|
+
"it": "Zigbee",
|
|
228
|
+
"es": "Zigbee",
|
|
229
|
+
"pl": "Zigbee",
|
|
230
|
+
"zh-cn": "Zigbee"
|
|
231
|
+
},
|
|
232
|
+
"fa-icon": "</i><img style='width:24px;margin-bottom:-6px;' src='/adapter/zigbee/zigbee.svg'><i>"
|
|
233
|
+
},
|
|
234
|
+
"plugins": {
|
|
235
|
+
"sentry": {
|
|
236
|
+
"dsn": "https://c829e2ad996d45d1bdb2247805699883@o831057.ingest.sentry.io/5812498"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"globalDependencies": [
|
|
240
|
+
{
|
|
241
|
+
"admin": ">=5.1.25"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"dependencies": [
|
|
245
|
+
{
|
|
246
|
+
"js-controller": ">=3.3.0"
|
|
247
|
+
}
|
|
248
|
+
]
|
|
249
|
+
},
|
|
250
|
+
"native": {
|
|
251
|
+
"port": "",
|
|
252
|
+
"panID": 6754,
|
|
253
|
+
"extPanID": "DDDDDDDDDDDDDDDD",
|
|
254
|
+
"channel": 11,
|
|
255
|
+
"disableLed": false,
|
|
256
|
+
"precfgkey": "01030507090B0D0F00020406080A0C0D",
|
|
257
|
+
"countDown": 60,
|
|
258
|
+
"adapterType": "zstack",
|
|
259
|
+
"debugHerdsman": false,
|
|
260
|
+
"disablePing": false,
|
|
261
|
+
"external": "",
|
|
262
|
+
"startWithInconsistent": false
|
|
263
|
+
},
|
|
264
|
+
"instanceObjects": [
|
|
265
|
+
{
|
|
266
|
+
"_id": "exclude",
|
|
267
|
+
"type": "channel",
|
|
268
|
+
"common": {
|
|
269
|
+
"name": "exclude devs from devices.js"
|
|
270
|
+
},
|
|
271
|
+
"native": {}
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"_id": "exclude.all",
|
|
275
|
+
"type": "state",
|
|
276
|
+
"common": {
|
|
277
|
+
"name": "all",
|
|
278
|
+
"type": "string",
|
|
279
|
+
"read": true,
|
|
280
|
+
"write": true,
|
|
281
|
+
"def": "[]"
|
|
282
|
+
},
|
|
283
|
+
"native": {}
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"_id": "info",
|
|
287
|
+
"type": "channel",
|
|
288
|
+
"common": {
|
|
289
|
+
"name": "Information"
|
|
290
|
+
},
|
|
291
|
+
"native": {}
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"_id": "info.connection",
|
|
295
|
+
"type": "state",
|
|
296
|
+
"common": {
|
|
297
|
+
"role": "indicator.connected",
|
|
298
|
+
"name": "If connected to zigbee device",
|
|
299
|
+
"type": "boolean",
|
|
300
|
+
"read": true,
|
|
301
|
+
"write": false,
|
|
302
|
+
"def": false
|
|
303
|
+
},
|
|
304
|
+
"native": {}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"_id": "info.pairingMode",
|
|
308
|
+
"type": "state",
|
|
309
|
+
"common": {
|
|
310
|
+
"name": "Pairing mode",
|
|
311
|
+
"type": "boolean",
|
|
312
|
+
"read": true,
|
|
313
|
+
"write": false,
|
|
314
|
+
"def": false
|
|
315
|
+
},
|
|
316
|
+
"native": {}
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"_id": "info.pairingCountdown",
|
|
320
|
+
"type": "state",
|
|
321
|
+
"common": {
|
|
322
|
+
"name": "Pairing countdown",
|
|
323
|
+
"type": "number",
|
|
324
|
+
"read": true,
|
|
325
|
+
"write": false,
|
|
326
|
+
"def": 0
|
|
327
|
+
},
|
|
328
|
+
"native": {}
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"_id": "info.pairingMessage",
|
|
332
|
+
"type": "state",
|
|
333
|
+
"common": {
|
|
334
|
+
"name": "Pairing message",
|
|
335
|
+
"type": "string",
|
|
336
|
+
"read": true,
|
|
337
|
+
"write": false,
|
|
338
|
+
"def": ""
|
|
339
|
+
},
|
|
340
|
+
"native": {}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"_id": "info.groups",
|
|
344
|
+
"type": "state",
|
|
345
|
+
"common": {
|
|
346
|
+
"name": "Groups",
|
|
347
|
+
"type": "string",
|
|
348
|
+
"read": true,
|
|
349
|
+
"write": false,
|
|
350
|
+
"def": ""
|
|
351
|
+
},
|
|
352
|
+
"native": {}
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"_id": "info.undefinedDevices",
|
|
356
|
+
"type": "state",
|
|
357
|
+
"common": {
|
|
358
|
+
"name": "Recorded undefined devices",
|
|
359
|
+
"type": "string",
|
|
360
|
+
"read": true,
|
|
361
|
+
"write": false,
|
|
362
|
+
"def": ""
|
|
363
|
+
},
|
|
364
|
+
"native": {}
|
|
365
|
+
}
|
|
366
|
+
]
|
|
367
|
+
}
|