iobroker.device-watcher 2.6.0 → 2.6.1
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 +10 -0
- package/admin/i18n/de/translations.json +135 -120
- package/admin/i18n/en/translations.json +15 -1
- package/admin/i18n/es/translations.json +16 -1
- package/admin/i18n/fr/translations.json +16 -1
- package/admin/i18n/it/translations.json +16 -1
- package/admin/i18n/nl/translations.json +16 -1
- package/admin/i18n/pl/translations.json +16 -1
- package/admin/i18n/pt/translations.json +16 -1
- package/admin/i18n/ru/translations.json +16 -1
- package/admin/i18n/uk/translations.json +16 -1
- package/admin/i18n/zh-cn/translations.json +16 -1
- package/admin/jsonConfig.json +112 -48
- package/io-package.json +805 -795
- package/lib/arrApart.js +13 -0
- package/main.js +798 -598
- package/package.json +2 -1
package/lib/arrApart.js
CHANGED
|
@@ -98,6 +98,18 @@ const arrApart = {
|
|
|
98
98
|
isLowBat: '.battery_low',
|
|
99
99
|
id: '.name',
|
|
100
100
|
},
|
|
101
|
+
fhemTFAsensors: {
|
|
102
|
+
Selektor: 'fhem.*.batteryState',
|
|
103
|
+
timeSelector: '.batteryState',
|
|
104
|
+
adapterID: 'fhemTFAsensors',
|
|
105
|
+
adapter: 'FHEM',
|
|
106
|
+
rssiState: 'none',
|
|
107
|
+
battery: 'none',
|
|
108
|
+
reach: 'none',
|
|
109
|
+
isLowBat: '.batteryState',
|
|
110
|
+
id: 'none',
|
|
111
|
+
upgrade: 'none',
|
|
112
|
+
},
|
|
101
113
|
fritzdect: {
|
|
102
114
|
Selektor: 'fritzdect.*.present',
|
|
103
115
|
timeSelector: '.present',
|
|
@@ -161,6 +173,7 @@ const arrApart = {
|
|
|
161
173
|
isLowBat2: '.LOWBAT_ALARM',
|
|
162
174
|
stateValue: '.1.STATE',
|
|
163
175
|
faultReporting: '.4.FAULT_REPORTING',
|
|
176
|
+
hmDNBattery: '.4.BATTERY_STATE',
|
|
164
177
|
},
|
|
165
178
|
homeconnect: {
|
|
166
179
|
Selektor: 'homeconnect.*.general.connected',
|