iobroker-ucl 1.0.43 → 1.0.44
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/homematicFunctions.js +16 -16
- package/homematicFunctions.ts +16 -16
- package/package.json +1 -1
package/homematicFunctions.js
CHANGED
@@ -171,52 +171,52 @@ function getHomematicDevices(adapter, filterCategory) {
|
|
171
171
|
exports.getHomematicDevices = getHomematicDevices;
|
172
172
|
function getHomematicDevicesAll(adapter) {
|
173
173
|
var homematicArray = [{}];
|
174
|
-
adapter.getHomematicDevices(deviceHomematicWandthermostat).forEach(function (homematic) {
|
174
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWandthermostat).forEach(function (homematic) {
|
175
175
|
homematicArray.push(homematic);
|
176
176
|
});
|
177
|
-
adapter.getHomematicDevices(deviceHomematicPraesenzmelder).forEach(function (homematic) {
|
177
|
+
adapter.getHomematicDevices(adapter, deviceHomematicPraesenzmelder).forEach(function (homematic) {
|
178
178
|
homematicArray.push(homematic);
|
179
179
|
});
|
180
|
-
adapter.getHomematicDevices(deviceHomematicWetterstation).forEach(function (homematic) {
|
180
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWetterstation).forEach(function (homematic) {
|
181
181
|
homematicArray.push(homematic);
|
182
182
|
});
|
183
|
-
adapter.getHomematicDevices(deviceHomematicDoor).forEach(function (homematic) {
|
183
|
+
adapter.getHomematicDevices(adapter, deviceHomematicDoor).forEach(function (homematic) {
|
184
184
|
homematicArray.push(homematic);
|
185
185
|
});
|
186
|
-
adapter.getHomematicDevices(deviceHomematicRollladen).forEach(function (homematic) {
|
186
|
+
adapter.getHomematicDevices(adapter, deviceHomematicRollladen).forEach(function (homematic) {
|
187
187
|
homematicArray.push(homematic);
|
188
188
|
});
|
189
|
-
adapter.getHomematicDevices(deviceHomematicWandschalter).forEach(function (homematic) {
|
189
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWandschalter).forEach(function (homematic) {
|
190
190
|
homematicArray.push(homematic);
|
191
191
|
});
|
192
|
-
adapter.getHomematicDevices(deviceHomematicFussbodenheizung).forEach(function (homematic) {
|
192
|
+
adapter.getHomematicDevices(adapter, deviceHomematicFussbodenheizung).forEach(function (homematic) {
|
193
193
|
homematicArray.push(homematic);
|
194
194
|
});
|
195
|
-
adapter.getHomematicDevices(deviceHomematicWandtaster).forEach(function (homematic) {
|
195
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWandtaster).forEach(function (homematic) {
|
196
196
|
homematicArray.push(homematic);
|
197
197
|
});
|
198
|
-
adapter.getHomematicDevices(deviceHomematicAccessPoint).forEach(function (homematic) {
|
198
|
+
adapter.getHomematicDevices(adapter, deviceHomematicAccessPoint).forEach(function (homematic) {
|
199
199
|
homematicArray.push(homematic);
|
200
200
|
});
|
201
|
-
adapter.getHomematicDevices(deviceHomematicTemperatursensor).forEach(function (homematic) {
|
201
|
+
adapter.getHomematicDevices(adapter, deviceHomematicTemperatursensor).forEach(function (homematic) {
|
202
202
|
homematicArray.push(homematic);
|
203
203
|
});
|
204
|
-
adapter.getHomematicDevices(deviceHomematicRauchmelder).forEach(function (homematic) {
|
204
|
+
adapter.getHomematicDevices(adapter, deviceHomematicRauchmelder).forEach(function (homematic) {
|
205
205
|
homematicArray.push(homematic);
|
206
206
|
});
|
207
|
-
adapter.getHomematicDevices(deviceHomematicFunkSchaltaktor).forEach(function (homematic) {
|
207
|
+
adapter.getHomematicDevices(adapter, deviceHomematicFunkSchaltaktor).forEach(function (homematic) {
|
208
208
|
homematicArray.push(homematic);
|
209
209
|
});
|
210
|
-
adapter.getHomematicDevices(deviceHomematicWindow).forEach(function (homematic) {
|
210
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWindow).forEach(function (homematic) {
|
211
211
|
homematicArray.push(homematic);
|
212
212
|
});
|
213
|
-
adapter.getHomematicDevices(deviceHomematicSteckdose).forEach(function (homematic) {
|
213
|
+
adapter.getHomematicDevices(adapter, deviceHomematicSteckdose).forEach(function (homematic) {
|
214
214
|
homematicArray.push(homematic);
|
215
215
|
});
|
216
|
-
adapter.getHomematicDevices(deviceHomematicHeizkoerper).forEach(function (homematic) {
|
216
|
+
adapter.getHomematicDevices(adapter, deviceHomematicHeizkoerper).forEach(function (homematic) {
|
217
217
|
homematicArray.push(homematic);
|
218
218
|
});
|
219
|
-
adapter.getHomematicDevices(deviceHomematicDimmer).forEach(function (homematic) {
|
219
|
+
adapter.getHomematicDevices(adapter, deviceHomematicDimmer).forEach(function (homematic) {
|
220
220
|
homematicArray.push(homematic);
|
221
221
|
});
|
222
222
|
return homematicArray;
|
package/homematicFunctions.ts
CHANGED
@@ -174,52 +174,52 @@ export function getHomematicDevices(adapter:any, filterCategory:string) {
|
|
174
174
|
export function getHomematicDevicesAll(adapter:any) {
|
175
175
|
var homematicArray = [{}];
|
176
176
|
|
177
|
-
adapter.getHomematicDevices(deviceHomematicWandthermostat).forEach(homematic => {
|
177
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWandthermostat).forEach(homematic => {
|
178
178
|
homematicArray.push(homematic);
|
179
179
|
});
|
180
|
-
adapter.getHomematicDevices(deviceHomematicPraesenzmelder).forEach(homematic => {
|
180
|
+
adapter.getHomematicDevices(adapter, deviceHomematicPraesenzmelder).forEach(homematic => {
|
181
181
|
homematicArray.push(homematic);
|
182
182
|
});
|
183
|
-
adapter.getHomematicDevices(deviceHomematicWetterstation).forEach(homematic => {
|
183
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWetterstation).forEach(homematic => {
|
184
184
|
homematicArray.push(homematic);
|
185
185
|
});
|
186
|
-
adapter.getHomematicDevices(deviceHomematicDoor).forEach(homematic => {
|
186
|
+
adapter.getHomematicDevices(adapter, deviceHomematicDoor).forEach(homematic => {
|
187
187
|
homematicArray.push(homematic);
|
188
188
|
});
|
189
|
-
adapter.getHomematicDevices(deviceHomematicRollladen).forEach(homematic => {
|
189
|
+
adapter.getHomematicDevices(adapter, deviceHomematicRollladen).forEach(homematic => {
|
190
190
|
homematicArray.push(homematic);
|
191
191
|
});
|
192
|
-
adapter.getHomematicDevices(deviceHomematicWandschalter).forEach(homematic => {
|
192
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWandschalter).forEach(homematic => {
|
193
193
|
homematicArray.push(homematic);
|
194
194
|
});
|
195
|
-
adapter.getHomematicDevices(deviceHomematicFussbodenheizung).forEach(homematic => {
|
195
|
+
adapter.getHomematicDevices(adapter, deviceHomematicFussbodenheizung).forEach(homematic => {
|
196
196
|
homematicArray.push(homematic);
|
197
197
|
});
|
198
|
-
adapter.getHomematicDevices(deviceHomematicWandtaster).forEach(homematic => {
|
198
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWandtaster).forEach(homematic => {
|
199
199
|
homematicArray.push(homematic);
|
200
200
|
});
|
201
|
-
adapter.getHomematicDevices(deviceHomematicAccessPoint).forEach(homematic => {
|
201
|
+
adapter.getHomematicDevices(adapter, deviceHomematicAccessPoint).forEach(homematic => {
|
202
202
|
homematicArray.push(homematic);
|
203
203
|
});
|
204
|
-
adapter.getHomematicDevices(deviceHomematicTemperatursensor).forEach(homematic => {
|
204
|
+
adapter.getHomematicDevices(adapter, deviceHomematicTemperatursensor).forEach(homematic => {
|
205
205
|
homematicArray.push(homematic);
|
206
206
|
});
|
207
|
-
adapter.getHomematicDevices(deviceHomematicRauchmelder).forEach(homematic => {
|
207
|
+
adapter.getHomematicDevices(adapter, deviceHomematicRauchmelder).forEach(homematic => {
|
208
208
|
homematicArray.push(homematic);
|
209
209
|
});
|
210
|
-
adapter.getHomematicDevices(deviceHomematicFunkSchaltaktor).forEach(homematic => {
|
210
|
+
adapter.getHomematicDevices(adapter, deviceHomematicFunkSchaltaktor).forEach(homematic => {
|
211
211
|
homematicArray.push(homematic);
|
212
212
|
});
|
213
|
-
adapter.getHomematicDevices(deviceHomematicWindow).forEach(homematic => {
|
213
|
+
adapter.getHomematicDevices(adapter, deviceHomematicWindow).forEach(homematic => {
|
214
214
|
homematicArray.push(homematic);
|
215
215
|
});
|
216
|
-
adapter.getHomematicDevices(deviceHomematicSteckdose).forEach(homematic => {
|
216
|
+
adapter.getHomematicDevices(adapter, deviceHomematicSteckdose).forEach(homematic => {
|
217
217
|
homematicArray.push(homematic);
|
218
218
|
});
|
219
|
-
adapter.getHomematicDevices(deviceHomematicHeizkoerper).forEach(homematic => {
|
219
|
+
adapter.getHomematicDevices(adapter, deviceHomematicHeizkoerper).forEach(homematic => {
|
220
220
|
homematicArray.push(homematic);
|
221
221
|
});
|
222
|
-
adapter.getHomematicDevices(deviceHomematicDimmer).forEach(homematic => {
|
222
|
+
adapter.getHomematicDevices(adapter, deviceHomematicDimmer).forEach(homematic => {
|
223
223
|
homematicArray.push(homematic);
|
224
224
|
});
|
225
225
|
return homematicArray;
|