iobroker-ucl 1.2.63 → 1.2.65
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/package.json +1 -1
- package/shellyClasses.js +1 -0
- package/shellyClasses.ts +2 -0
- package/shellyFunctions.js +2 -2
- package/shellyFunctions.ts +2 -2
package/package.json
CHANGED
package/shellyClasses.js
CHANGED
@@ -212,6 +212,7 @@ var ShellyLampeWeiss = /** @class */ (function (_super) {
|
|
212
212
|
_this.turnOffExitHouseWinter = turnOffExitHouseWinter;
|
213
213
|
_this.turnOnEnterHouseSummer = turnOnEnterHouseSummer;
|
214
214
|
_this.turnOnEnterHouseWinter = turnOnEnterHouseWinter;
|
215
|
+
adapter.log("here7777: " + additionalStates4TurnOff);
|
215
216
|
_this.nachtbeleuchtung = nachtbeleuchtung;
|
216
217
|
_this.channel = channel;
|
217
218
|
_this.alexaSmartNamesForOn = alexaSmartNamesForOn;
|
package/shellyClasses.ts
CHANGED
@@ -234,6 +234,8 @@ export class ShellyLampeWeiss extends AbstractShelly {
|
|
234
234
|
this.turnOnEnterHouseSummer = turnOnEnterHouseSummer;
|
235
235
|
this.turnOnEnterHouseWinter = turnOnEnterHouseWinter;
|
236
236
|
|
237
|
+
adapter.log("here7777: " + additionalStates4TurnOff);
|
238
|
+
|
237
239
|
this.nachtbeleuchtung = nachtbeleuchtung;
|
238
240
|
this.channel = channel;
|
239
241
|
this.alexaSmartNamesForOn = alexaSmartNamesForOn;
|
package/shellyFunctions.js
CHANGED
@@ -263,7 +263,7 @@ function createShellyLampe(adapter, rawId, etage, raum, device, baseState, chann
|
|
263
263
|
// Allgemein:
|
264
264
|
createShellyDevice(adapter, rawId, etage, raum, device, baseState, deviceShellyLampeWeiss);
|
265
265
|
// attributeChannel
|
266
|
-
createDatenpunktSingle(adapter, rawId,
|
266
|
+
createDatenpunktSingle(adapter, rawId, attributeTypeNumber, attributeChannel, channel, deviceShellyLampeWeiss);
|
267
267
|
// alexaSmartNamesForOn:string[]
|
268
268
|
var db_alexaSmartNamesForOn = null;
|
269
269
|
alexaSmartNamesForOn.forEach(function (value) {
|
@@ -355,7 +355,7 @@ function createShellySteckdose(adapter, rawId, etage, raum, device, baseState, c
|
|
355
355
|
// Allgemein:
|
356
356
|
createShellyDevice(adapter, rawId, etage, raum, device, baseState, deviceShellySteckdose);
|
357
357
|
// attributeChannel
|
358
|
-
createDatenpunktSingle(adapter, rawId,
|
358
|
+
createDatenpunktSingle(adapter, rawId, attributeTypeNumber, attributeChannel, channel, deviceShellyLampeWeiss);
|
359
359
|
// alexaSmartNamesForOn:string[]
|
360
360
|
var db_alexaSmartNamesForOn = null;
|
361
361
|
alexaSmartNamesForOn.forEach(function (value) {
|
package/shellyFunctions.ts
CHANGED
@@ -295,7 +295,7 @@ export function createShellyLampe(adapter:any, rawId: number, etage: string, rau
|
|
295
295
|
createShellyDevice(adapter, rawId, etage, raum, device, baseState, deviceShellyLampeWeiss);
|
296
296
|
|
297
297
|
// attributeChannel
|
298
|
-
createDatenpunktSingle(adapter, rawId,
|
298
|
+
createDatenpunktSingle(adapter, rawId, attributeTypeNumber, attributeChannel, channel, deviceShellyLampeWeiss);
|
299
299
|
|
300
300
|
// alexaSmartNamesForOn:string[]
|
301
301
|
var db_alexaSmartNamesForOn = null;
|
@@ -393,7 +393,7 @@ export function createShellySteckdose(adapter:any, rawId: number, etage: string,
|
|
393
393
|
createShellyDevice(adapter, rawId, etage, raum, device, baseState, deviceShellySteckdose);
|
394
394
|
|
395
395
|
// attributeChannel
|
396
|
-
createDatenpunktSingle(adapter, rawId,
|
396
|
+
createDatenpunktSingle(adapter, rawId, attributeTypeNumber, attributeChannel, channel, deviceShellyLampeWeiss);
|
397
397
|
|
398
398
|
// alexaSmartNamesForOn:string[]
|
399
399
|
var db_alexaSmartNamesForOn = null;
|