iobroker.device-watcher 0.2.4 → 0.3.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/README.md +15 -4
- package/admin/i18n/de/translations.json +3 -1
- package/admin/i18n/en/translations.json +3 -1
- package/admin/i18n/es/translations.json +3 -1
- package/admin/i18n/fr/translations.json +3 -1
- package/admin/i18n/it/translations.json +3 -1
- package/admin/i18n/nl/translations.json +3 -1
- package/admin/i18n/pl/translations.json +3 -1
- package/admin/i18n/pt/translations.json +3 -1
- package/admin/i18n/ru/translations.json +3 -1
- package/admin/i18n/zh-cn/translations.json +3 -1
- package/admin/jsonConfig.json +48 -2
- package/io-package.json +69 -52
- package/main.js +519 -239
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
[](https://www.npmjs.com/package/iobroker.device-watcher)
|
|
5
5
|
[](https://www.npmjs.com/package/iobroker.device-watcher)
|
|
6
6
|

|
|
7
|
-
|
|
7
|
+
<!---->
|
|
8
8
|
[](https://github.com/ciddi89/ioBroker.device-watcher/blob/main/LICENSE)
|
|
9
9
|

|
|
10
|
-
](https://img.shields.io/github/commits-since/ciddi89/ioBroker.device-watcher/v0.2.4)
|
|
11
11
|

|
|
12
12
|

|
|
13
13
|
|
|
@@ -15,8 +15,13 @@
|
|
|
15
15
|
|
|
16
16
|
**Tests:** 
|
|
17
17
|
|
|
18
|
+
## Sentry
|
|
18
19
|
**This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.** For more details and for information how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0.
|
|
19
20
|
|
|
21
|
+
## Documentation
|
|
22
|
+
🇬🇧 [Documentation](/docs/en/README.md)</br>
|
|
23
|
+
🇩🇪 [Dokumentation](/docs/de/README.md)
|
|
24
|
+
|
|
20
25
|
## Device-Watcher adapter for ioBroker
|
|
21
26
|
|
|
22
27
|
This is a watchdog for wireless devices. The adapter looks every fifteen minutes for the rssi/link quality and battery states and create JSON lists of them (devices with battery, devices with link quality, devices offline and devices all) and count the devices in the same categories. For example you can use the lists and states for Grafana, Jarvis etc.
|
|
@@ -25,14 +30,16 @@ Supported adapters are:
|
|
|
25
30
|
* Alexa2
|
|
26
31
|
* Ble
|
|
27
32
|
* Deconz
|
|
28
|
-
*
|
|
33
|
+
* Enocean
|
|
29
34
|
* ESPHome
|
|
35
|
+
* FritzDect
|
|
30
36
|
* Homematic
|
|
31
37
|
* Hue
|
|
32
38
|
* Hue Extended
|
|
33
39
|
* MiHome
|
|
40
|
+
* MiHome Vacuum
|
|
34
41
|
* Nuki Extended
|
|
35
|
-
* Ping (You have to set the option 'Advanced Information / Erweiterte Information' in the instance settings of ping for
|
|
42
|
+
* Ping (You have to set the option 'Advanced Information / Erweiterte Information' in the instance settings of ping for each device)
|
|
36
43
|
* Shelly
|
|
37
44
|
* Sonoff
|
|
38
45
|
* Sonos
|
|
@@ -76,6 +83,10 @@ If you found a bug or you have an improvement suggestion, feel free to open an i
|
|
|
76
83
|
Placeholder for the next version (at the beginning of the line):
|
|
77
84
|
### **WORK IN PROGRESS**
|
|
78
85
|
-->
|
|
86
|
+
### 0.3.0 (2022-08-10)
|
|
87
|
+
- removed channelnumber in Homematic devices name
|
|
88
|
+
- added function to create html list
|
|
89
|
+
- added german and english documentation
|
|
79
90
|
### 0.2.4 (2022-07-31)
|
|
80
91
|
- many changes of code, comments and error handling
|
|
81
92
|
### 0.2.2 (2022-07-28)
|
|
@@ -66,5 +66,7 @@
|
|
|
66
66
|
"Please choose": "Bitte auswählen",
|
|
67
67
|
"Create own folders for each adapter": "Erstellen Sie für jeden Adapter eigene Ordner",
|
|
68
68
|
"Use the true value of the signal strength, or it is converted to %": "Verwenden Sie den wahren Wert der Signalstärke oder konvertieren Sie ihn in %",
|
|
69
|
-
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Hier können Sie die offline Zeiten von jedem Adapter definieren. Falls Sie direkt die Datenpunkte der Geräte (online, available, reachable usw.) nutzen wollen um den Status zu ermitteln, tragen sie '-1' ein."
|
|
69
|
+
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Hier können Sie die offline Zeiten von jedem Adapter definieren. Falls Sie direkt die Datenpunkte der Geräte (online, available, reachable usw.) nutzen wollen um den Status zu ermitteln, tragen sie '-1' ein.",
|
|
70
|
+
"Create additionally HTML lists": "Erstellen Sie zusätzlich HTML-Listen",
|
|
71
|
+
"Create the lists also in HTML": "Erstellen Sie die Listen auch in HTML"
|
|
70
72
|
}
|
|
@@ -63,5 +63,7 @@
|
|
|
63
63
|
"If you like to have for every Adapter an own folder with own data":"If you like to have for every Adapter an own folder with own data",
|
|
64
64
|
"Please choose":"Please choose",
|
|
65
65
|
"Create own folders for each adapter":"Create own folders for each adapter",
|
|
66
|
-
"Use the true value of the signal strength, or it is converted to %": "Use the true value of the signal strength, Or it is converted to %"
|
|
66
|
+
"Use the true value of the signal strength, or it is converted to %": "Use the true value of the signal strength, Or it is converted to %",
|
|
67
|
+
"Create additionally HTML lists": "Create additionally HTML lists",
|
|
68
|
+
"Create the lists also in HTML": "Create the lists also in HTML"
|
|
67
69
|
}
|
|
@@ -66,5 +66,7 @@
|
|
|
66
66
|
"Please choose": "Por favor elige",
|
|
67
67
|
"Create own folders for each adapter": "Crear carpetas propias para cada adaptador",
|
|
68
68
|
"Use the true value of the signal strength, or it is converted to %": "Utilice el valor real de la intensidad de la señal, o se convierte a %",
|
|
69
|
-
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Aquí puede definir los tiempos fuera de línea de cada adaptador. "
|
|
69
|
+
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Aquí puede definir los tiempos fuera de línea de cada adaptador. ",
|
|
70
|
+
"Create additionally HTML lists": "Crear listas HTML adicionales",
|
|
71
|
+
"Create the lists also in HTML": "Crea las listas también en HTML"
|
|
70
72
|
}
|
|
@@ -66,5 +66,7 @@
|
|
|
66
66
|
"Please choose": "Choisissez s'il vous plaît",
|
|
67
67
|
"Create own folders for each adapter": "Créez vos propres dossiers pour chaque adaptateur",
|
|
68
68
|
"Use the true value of the signal strength, or it is converted to %": "Utilisez la vraie valeur de la force du signal, ou elle est convertie en %",
|
|
69
|
-
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Ici, vous pouvez définir les heures hors ligne de chaque adaptateur. "
|
|
69
|
+
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Ici, vous pouvez définir les heures hors ligne de chaque adaptateur. ",
|
|
70
|
+
"Create additionally HTML lists": "Créer des listes HTML supplémentaires",
|
|
71
|
+
"Create the lists also in HTML": "Créez les listes aussi en HTML"
|
|
70
72
|
}
|
|
@@ -66,5 +66,7 @@
|
|
|
66
66
|
"Please choose": "Si prega di scegliere",
|
|
67
67
|
"Create own folders for each adapter": "Crea cartelle personalizzate per ogni adattatore",
|
|
68
68
|
"Use the true value of the signal strength, or it is converted to %": "Usa il vero valore della potenza del segnale, oppure viene convertito in %",
|
|
69
|
-
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Qui puoi definire i tempi offline di ciascun adattatore. "
|
|
69
|
+
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Qui puoi definire i tempi offline di ciascun adattatore. ",
|
|
70
|
+
"Create additionally HTML lists": "Crea elenchi HTML aggiuntivi",
|
|
71
|
+
"Create the lists also in HTML": "Crea le liste anche in HTML"
|
|
70
72
|
}
|
|
@@ -66,5 +66,7 @@
|
|
|
66
66
|
"Please choose": "Gelieve te kiezen",
|
|
67
67
|
"Create own folders for each adapter": "Maak eigen mappen voor elke adapter",
|
|
68
68
|
"Use the true value of the signal strength, or it is converted to %": "Gebruik de werkelijke waarde van de signaalsterkte, of het wordt geconverteerd naar %",
|
|
69
|
-
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Hier kunt u de offline tijden van elke adapter definiëren. "
|
|
69
|
+
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Hier kunt u de offline tijden van elke adapter definiëren. ",
|
|
70
|
+
"Create additionally HTML lists": "Extra HTML-lijsten maken",
|
|
71
|
+
"Create the lists also in HTML": "Maak de lijsten ook in HTML aan"
|
|
70
72
|
}
|
|
@@ -66,5 +66,7 @@
|
|
|
66
66
|
"Please choose": "Proszę wybrać",
|
|
67
67
|
"Create own folders for each adapter": "Utwórz własne foldery dla każdego adaptera",
|
|
68
68
|
"Use the true value of the signal strength, or it is converted to %": "Użyj prawdziwej wartości siły sygnału lub jest konwertowane na %",
|
|
69
|
-
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Tutaj możesz zdefiniować czasy offline każdego adaptera. "
|
|
69
|
+
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Tutaj możesz zdefiniować czasy offline każdego adaptera. ",
|
|
70
|
+
"Create additionally HTML lists": "Utwórz dodatkowo listy HTML",
|
|
71
|
+
"Create the lists also in HTML": "Twórz listy również w HTML"
|
|
70
72
|
}
|
|
@@ -66,5 +66,7 @@
|
|
|
66
66
|
"Please choose": "Por favor escolha",
|
|
67
67
|
"Create own folders for each adapter": "Crie pastas próprias para cada adaptador",
|
|
68
68
|
"Use the true value of the signal strength, or it is converted to %": "Use o valor real da força do sinal, ou é convertido em %",
|
|
69
|
-
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Aqui você pode definir os tempos offline de cada adaptador. "
|
|
69
|
+
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Aqui você pode definir os tempos offline de cada adaptador. ",
|
|
70
|
+
"Create additionally HTML lists": "Crie listas HTML adicionais",
|
|
71
|
+
"Create the lists also in HTML": "Crie as listas também em HTML"
|
|
70
72
|
}
|
|
@@ -66,5 +66,7 @@
|
|
|
66
66
|
"Please choose": "Пожалуйста, выберите",
|
|
67
67
|
"Create own folders for each adapter": "Создайте свои папки для каждого адаптера",
|
|
68
68
|
"Use the true value of the signal strength, or it is converted to %": "Используйте истинное значение уровня сигнала или преобразуйте его в %",
|
|
69
|
-
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Здесь вы можете определить время автономной работы каждого адаптера. "
|
|
69
|
+
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "Здесь вы можете определить время автономной работы каждого адаптера. ",
|
|
70
|
+
"Create additionally HTML lists": "Создание дополнительных HTML-списков",
|
|
71
|
+
"Create the lists also in HTML": "Создавайте списки также в HTML"
|
|
70
72
|
}
|
|
@@ -66,5 +66,7 @@
|
|
|
66
66
|
"Please choose": "请选择",
|
|
67
67
|
"Create own folders for each adapter": "为每个适配器创建自己的文件夹",
|
|
68
68
|
"Use the true value of the signal strength, or it is converted to %": "使用信号强度的真实值,或者转换为%",
|
|
69
|
-
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "您可以在此处定义每个适配器的离线时间。"
|
|
69
|
+
"Here you can define the offline times of each adapter. If you want to use the data points of the devices (online, available, reachable etc.) directly to determine the status, enter '-1'.": "您可以在此处定义每个适配器的离线时间。",
|
|
70
|
+
"Create additionally HTML lists": "额外创建 HTML 列表",
|
|
71
|
+
"Create the lists also in HTML": "也在 HTML 中创建列表"
|
|
70
72
|
}
|
package/admin/jsonConfig.json
CHANGED
|
@@ -32,13 +32,20 @@
|
|
|
32
32
|
"lg": 3,
|
|
33
33
|
"label": "Deconz"
|
|
34
34
|
},
|
|
35
|
-
"
|
|
35
|
+
"fritzdectDevices": {
|
|
36
36
|
"type": "checkbox",
|
|
37
37
|
"sm": 6,
|
|
38
38
|
"md": 6,
|
|
39
39
|
"lg": 3,
|
|
40
40
|
"label": "FritzDect"
|
|
41
41
|
},
|
|
42
|
+
"enoceanDevices": {
|
|
43
|
+
"type": "checkbox",
|
|
44
|
+
"sm": 6,
|
|
45
|
+
"md": 6,
|
|
46
|
+
"lg": 3,
|
|
47
|
+
"label": "Enocean"
|
|
48
|
+
},
|
|
42
49
|
"esphomeDevices": {
|
|
43
50
|
"type": "checkbox",
|
|
44
51
|
"sm": 6,
|
|
@@ -74,6 +81,13 @@
|
|
|
74
81
|
"lg": 3,
|
|
75
82
|
"label": "MiHome"
|
|
76
83
|
},
|
|
84
|
+
"mihomeVacuumDevices": {
|
|
85
|
+
"type": "checkbox",
|
|
86
|
+
"sm": 6,
|
|
87
|
+
"md": 6,
|
|
88
|
+
"lg": 3,
|
|
89
|
+
"label": "MiHome Vacuum"
|
|
90
|
+
},
|
|
77
91
|
"nukiExtDevices": {
|
|
78
92
|
"type": "checkbox",
|
|
79
93
|
"sm": 6,
|
|
@@ -561,6 +575,14 @@
|
|
|
561
575
|
"label": "Create own folders for each adapter",
|
|
562
576
|
"help": "If you like to have for every Adapter an own folder with own data"
|
|
563
577
|
},
|
|
578
|
+
"createHtmlList": {
|
|
579
|
+
"type": "checkbox",
|
|
580
|
+
"sm": 12,
|
|
581
|
+
"md": 6,
|
|
582
|
+
"lg": 4,
|
|
583
|
+
"label": "Create additionally HTML lists",
|
|
584
|
+
"help": "Create the lists also in HTML"
|
|
585
|
+
},
|
|
564
586
|
"_headerOfflineTime": {
|
|
565
587
|
"type": "header",
|
|
566
588
|
"text": "Offline Time",
|
|
@@ -613,6 +635,18 @@
|
|
|
613
635
|
"hidden": "!data.deconzDevices",
|
|
614
636
|
"hideOnlyControl": false
|
|
615
637
|
},
|
|
638
|
+
"enoceanMaxMinutes": {
|
|
639
|
+
"type": "number",
|
|
640
|
+
"min": 0,
|
|
641
|
+
"max": 100000,
|
|
642
|
+
"sm": 6,
|
|
643
|
+
"md": 6,
|
|
644
|
+
"lg": 3,
|
|
645
|
+
"label": "Enocean",
|
|
646
|
+
"help": "in minutes",
|
|
647
|
+
"hidden": "!data.enoceanDevices",
|
|
648
|
+
"hideOnlyControl": false
|
|
649
|
+
},
|
|
616
650
|
"esphomeMaxMinutes": {
|
|
617
651
|
"type": "number",
|
|
618
652
|
"min": -1,
|
|
@@ -634,7 +668,7 @@
|
|
|
634
668
|
"lg": 3,
|
|
635
669
|
"label": "FritzDect",
|
|
636
670
|
"help": "in minutes",
|
|
637
|
-
"hidden": "!data.
|
|
671
|
+
"hidden": "!data.fritzdectDevices",
|
|
638
672
|
"hideOnlyControl": false
|
|
639
673
|
},
|
|
640
674
|
"homematicMaxMinutes": {
|
|
@@ -685,6 +719,18 @@
|
|
|
685
719
|
"hidden": "!data.mihomeDevices",
|
|
686
720
|
"hideOnlyControl": false
|
|
687
721
|
},
|
|
722
|
+
"mihomeVacuumMaxMinutes": {
|
|
723
|
+
"type": "number",
|
|
724
|
+
"min": 0,
|
|
725
|
+
"max": 100000,
|
|
726
|
+
"sm": 6,
|
|
727
|
+
"md": 6,
|
|
728
|
+
"lg": 3,
|
|
729
|
+
"label": "Mihome Vacuum",
|
|
730
|
+
"help": "in minutes",
|
|
731
|
+
"hidden": "!data.mihomeVacuumDevices",
|
|
732
|
+
"hideOnlyControl": false
|
|
733
|
+
},
|
|
688
734
|
"nukiextendMaxMinutes": {
|
|
689
735
|
"type": "number",
|
|
690
736
|
"min": -1,
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "device-watcher",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.3.0": {
|
|
7
|
+
"en": "removed channelnumber in Homematic devices name\nadded function to create html list\nadded german and english documentation",
|
|
8
|
+
"de": "kanalnummer entfernt in Homematic Gerätename\nfunktion hinzugefügt, um html-liste zu erstellen\ndeutsche und englische dokumentation",
|
|
9
|
+
"ru": "удаленный номер канала в имени Homematic устройств\nдобавлена функция для создания списка html\nдобавлена немецкая и английская документация",
|
|
10
|
+
"pt": "número de canal removido no nome de dispositivos Homematic\nfunção adicionada para criar lista html\nadicionado alemão e inglês documentação",
|
|
11
|
+
"nl": "verwijderde kanaal in Homema apparatuur\nvertaling:\nvertaling:",
|
|
12
|
+
"fr": "le nombre de canaux supprimés dans le nom des dispositifs Homematic\nfonction ajoutée pour créer la liste html\ndocuments allemands et anglais ajoutés",
|
|
13
|
+
"it": "numero di canale rimosso nel nome dei dispositivi Homematic\nfunzione aggiunta per creare l'elenco html\naggiunta documentazione tedesca e inglese",
|
|
14
|
+
"es": "número de canal eliminado en el nombre de dispositivos Homemáticos\nfunción agregada para crear la lista html\ndocumentación alemana e inglesa",
|
|
15
|
+
"pl": "usunąć numer kanałowy w nazwie Homematic\ndodano funkcję do tworzenia listy html\ndodał germanizm i english documentation",
|
|
16
|
+
"zh-cn": "拆除家庭装置名称的渠道\nd. 增设的编制名单的职能\n增 录"
|
|
17
|
+
},
|
|
6
18
|
"0.2.4": {
|
|
7
19
|
"en": "many changes of code, comments and error handling",
|
|
8
20
|
"de": "viele änderungen von code, kommentaren und fehlerbehandlung",
|
|
@@ -222,6 +234,7 @@
|
|
|
222
234
|
"native": {
|
|
223
235
|
"alexa2Devices": false,
|
|
224
236
|
"esphomeDevices": false,
|
|
237
|
+
"enoceanDevices": false,
|
|
225
238
|
"zigbeeDevices": false,
|
|
226
239
|
"bleDevices": false,
|
|
227
240
|
"sonoffDevices": false,
|
|
@@ -229,7 +242,7 @@
|
|
|
229
242
|
"homematicDevices": false,
|
|
230
243
|
"deconzDevices": false,
|
|
231
244
|
"zwaveDevices": false,
|
|
232
|
-
"
|
|
245
|
+
"fritzdectDevices": false,
|
|
233
246
|
"hueDevices": false,
|
|
234
247
|
"hueExtDevices": false,
|
|
235
248
|
"nukiExtDevices": false,
|
|
@@ -237,9 +250,11 @@
|
|
|
237
250
|
"switchbotBleDevices": false,
|
|
238
251
|
"sonosDevices": false,
|
|
239
252
|
"mihomeDevices": false,
|
|
253
|
+
"mihomeVacuumDevices": false,
|
|
240
254
|
"trueState": false,
|
|
241
255
|
"listOnlyBattery": false,
|
|
242
256
|
"createOwnFolder": false,
|
|
257
|
+
"createHtmlList": false,
|
|
243
258
|
"checkSendOfflineMsg": false,
|
|
244
259
|
"checkSendBatteryMsg": false,
|
|
245
260
|
"minWarnBatterie": 35,
|
|
@@ -271,11 +286,13 @@
|
|
|
271
286
|
"bleMaxMinutes": 300,
|
|
272
287
|
"deconzMaxMinutes": -1,
|
|
273
288
|
"esphomeMaxMinutes": -1,
|
|
289
|
+
"enoceanMaxMinutes": 300,
|
|
274
290
|
"fritzdectMaxMinutes": -1,
|
|
275
291
|
"homematicMaxMinutes": -1,
|
|
276
292
|
"hueMaxMinutes": -1,
|
|
277
293
|
"hueextMaxMinutes": -1,
|
|
278
294
|
"mihomeMaxMinutes": 300,
|
|
295
|
+
"mihomeVacuumMaxMinutes": 300,
|
|
279
296
|
"nukiextendMaxMinutes": -1,
|
|
280
297
|
"pingMaxMinutes": -1,
|
|
281
298
|
"shellyMaxMinutes": -1,
|
|
@@ -315,16 +332,16 @@
|
|
|
315
332
|
"type": "state",
|
|
316
333
|
"common": {
|
|
317
334
|
"name": {
|
|
318
|
-
"en": "List of offline devices",
|
|
319
|
-
"de": "Liste der Offline-Geräte",
|
|
320
|
-
"ru": "Список оффлайн устройств",
|
|
321
|
-
"pt": "Lista de dispositivos off-line",
|
|
322
|
-
"nl": "List van offline apparatuur",
|
|
323
|
-
"fr": "Liste des dispositifs hors ligne",
|
|
324
|
-
"it": "Elenco dei dispositivi offline",
|
|
325
|
-
"es": "Lista de dispositivos sin conexión",
|
|
326
|
-
"pl": "Lista urządzeń offline",
|
|
327
|
-
"zh-cn": "线装置清单"
|
|
335
|
+
"en": "JSON List of offline devices",
|
|
336
|
+
"de": "JSON Liste der Offline-Geräte",
|
|
337
|
+
"ru": "JSON Список оффлайн устройств",
|
|
338
|
+
"pt": "JSON Lista de dispositivos off-line",
|
|
339
|
+
"nl": "JSON List van offline apparatuur",
|
|
340
|
+
"fr": "JSON Liste des dispositifs hors ligne",
|
|
341
|
+
"it": "JSON Elenco dei dispositivi offline",
|
|
342
|
+
"es": "JSON Lista de dispositivos sin conexión",
|
|
343
|
+
"pl": "JSON Lista urządzeń offline",
|
|
344
|
+
"zh-cn": "JSON 线装置清单"
|
|
328
345
|
},
|
|
329
346
|
"type": "array",
|
|
330
347
|
"role": "json",
|
|
@@ -338,16 +355,16 @@
|
|
|
338
355
|
"type": "state",
|
|
339
356
|
"common": {
|
|
340
357
|
"name": {
|
|
341
|
-
"en": "List of all devices",
|
|
342
|
-
"de": "Liste aller Geräte",
|
|
343
|
-
"ru": "Список всех устройств",
|
|
344
|
-
"pt": "Lista de todos os dispositivos",
|
|
345
|
-
"nl": "List van alle apparaten",
|
|
346
|
-
"fr": "Liste de tous les dispositifs",
|
|
347
|
-
"it": "Elenco di tutti i dispositivi",
|
|
348
|
-
"es": "Lista de todos los dispositivos",
|
|
349
|
-
"pl": "Lista wszystkich urządzeń",
|
|
350
|
-
"zh-cn": "所有装置清单"
|
|
358
|
+
"en": "JSON List of all devices",
|
|
359
|
+
"de": "JSON Liste aller Geräte",
|
|
360
|
+
"ru": "JSON Список всех устройств",
|
|
361
|
+
"pt": "JSON Lista de todos os dispositivos",
|
|
362
|
+
"nl": "JSON List van alle apparaten",
|
|
363
|
+
"fr": "JSON Liste de tous les dispositifs",
|
|
364
|
+
"it": "JSON Elenco di tutti i dispositivi",
|
|
365
|
+
"es": "JSON Lista de todos los dispositivos",
|
|
366
|
+
"pl": "JSON Lista wszystkich urządzeń",
|
|
367
|
+
"zh-cn": "JSON 所有装置清单"
|
|
351
368
|
},
|
|
352
369
|
"type": "array",
|
|
353
370
|
"role": "json",
|
|
@@ -361,16 +378,16 @@
|
|
|
361
378
|
"type": "state",
|
|
362
379
|
"common": {
|
|
363
380
|
"name": {
|
|
364
|
-
"en": "List of devices with signal strength",
|
|
365
|
-
"de": "Liste der Geräte mit Signalstärke",
|
|
366
|
-
"ru": "Список устройств с силой сигнала",
|
|
367
|
-
"pt": "Lista de dispositivos com força de sinal",
|
|
368
|
-
"nl": "List van apparaten met signaalkracht",
|
|
369
|
-
"fr": "Liste des dispositifs avec force de signal",
|
|
370
|
-
"it": "Elenco dei dispositivi con forza del segnale",
|
|
371
|
-
"es": "Lista de dispositivos con fuerza de señal",
|
|
372
|
-
"pl": "Lista urządzeń z siłą sygnałową",
|
|
373
|
-
"zh-cn": "具有信号实力的装置清单"
|
|
381
|
+
"en": "JSON List of devices with signal strength",
|
|
382
|
+
"de": "JSON Liste der Geräte mit Signalstärke",
|
|
383
|
+
"ru": "JSON Список устройств с силой сигнала",
|
|
384
|
+
"pt": "JSON Lista de dispositivos com força de sinal",
|
|
385
|
+
"nl": "JSON List van apparaten met signaalkracht",
|
|
386
|
+
"fr": "JSON Liste des dispositifs avec force de signal",
|
|
387
|
+
"it": "JSON Elenco dei dispositivi con forza del segnale",
|
|
388
|
+
"es": "JSON Lista de dispositivos con fuerza de señal",
|
|
389
|
+
"pl": "JSON Lista urządzeń z siłą sygnałową",
|
|
390
|
+
"zh-cn": "JSON 具有信号实力的装置清单"
|
|
374
391
|
},
|
|
375
392
|
"type": "array",
|
|
376
393
|
"role": "json",
|
|
@@ -407,16 +424,16 @@
|
|
|
407
424
|
"type": "state",
|
|
408
425
|
"common": {
|
|
409
426
|
"name": {
|
|
410
|
-
"en": "List of devices with battery state",
|
|
411
|
-
"de": "Liste der Geräte mit Batteriezustand",
|
|
412
|
-
"ru": "Список устройств с состоянием батареи",
|
|
413
|
-
"pt": "Lista de dispositivos com estado da bateria",
|
|
414
|
-
"nl": "List van apparaten met batterij staat",
|
|
415
|
-
"fr": "Liste des appareils avec état de batterie",
|
|
416
|
-
"it": "Elenco dei dispositivi con stato della batteria",
|
|
417
|
-
"es": "Lista de dispositivos con estado de batería",
|
|
418
|
-
"pl": "Lista urządzeń z baterią stanową",
|
|
419
|
-
"zh-cn": "电池国装置清单"
|
|
427
|
+
"en": "JSON List of devices with battery state",
|
|
428
|
+
"de": "JSON Liste der Geräte mit Batteriezustand",
|
|
429
|
+
"ru": "JSON Список устройств с состоянием батареи",
|
|
430
|
+
"pt": "JSON Lista de dispositivos com estado da bateria",
|
|
431
|
+
"nl": "JSON List van apparaten met batterij staat",
|
|
432
|
+
"fr": "JSON Liste des appareils avec état de batterie",
|
|
433
|
+
"it": "JSON Elenco dei dispositivi con stato della batteria",
|
|
434
|
+
"es": "JSON Lista de dispositivos con estado de batería",
|
|
435
|
+
"pl": "JSON Lista urządzeń z baterią stanową",
|
|
436
|
+
"zh-cn": "JSON 电池国装置清单"
|
|
420
437
|
},
|
|
421
438
|
"type": "array",
|
|
422
439
|
"role": "json",
|
|
@@ -430,16 +447,16 @@
|
|
|
430
447
|
"type": "state",
|
|
431
448
|
"common": {
|
|
432
449
|
"name": {
|
|
433
|
-
"en": "List of devices with low battery state",
|
|
434
|
-
"de": "Liste der Geräte mit niedrigem Batteriezustand",
|
|
435
|
-
"ru": "Список устройств с низким состоянием батареи",
|
|
436
|
-
"pt": "Lista de dispositivos com baixo estado da bateria",
|
|
437
|
-
"nl": "List van apparaten met lage batterij staat",
|
|
438
|
-
"fr": "Liste des appareils à faible état de batterie",
|
|
439
|
-
"it": "Elenco di dispositivi con stato di batteria basso",
|
|
440
|
-
"es": "Lista de dispositivos con estado de batería bajo",
|
|
441
|
-
"pl": "Lista urządzeń o niskim stanie baterii",
|
|
442
|
-
"zh-cn": "低电池国家装置清单"
|
|
450
|
+
"en": "JSON List of devices with low battery state",
|
|
451
|
+
"de": "JSON Liste der Geräte mit niedrigem Batteriezustand",
|
|
452
|
+
"ru": "JSON Список устройств с низким состоянием батареи",
|
|
453
|
+
"pt": "JSON Lista de dispositivos com baixo estado da bateria",
|
|
454
|
+
"nl": "JSON List van apparaten met lage batterij staat",
|
|
455
|
+
"fr": "JSON Liste des appareils à faible état de batterie",
|
|
456
|
+
"it": "JSON Elenco di dispositivi con stato di batteria basso",
|
|
457
|
+
"es": "JSON Lista de dispositivos con estado de batería bajo",
|
|
458
|
+
"pl": "JSON Lista urządzeń o niskim stanie baterii",
|
|
459
|
+
"zh-cn": "JSON 低电池国家装置清单"
|
|
443
460
|
},
|
|
444
461
|
"type": "array",
|
|
445
462
|
"role": "json",
|