iobroker-ucl 1.1.32 → 1.1.34
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 +2 -0
- package/shellyClasses.ts +6 -1
package/package.json
CHANGED
package/shellyClasses.js
CHANGED
@@ -373,6 +373,8 @@ var ShellyDimmer = /** @class */ (function (_super) {
|
|
373
373
|
__extends(ShellyDimmer, _super);
|
374
374
|
function ShellyDimmer(adapter, id, etage, raum, device, baseState, alexaSmartNamesForOn, alexaActionNamesForOn, alexaLevelSchemeForOn, alexaSmartNamesForOff, alexaActionNamesForOff, levelSchemes, tasterBooleanOn, tasterBooleanOff, nachtbeleuchtung, turnOffExitHouseSummer, turnOffExitHouseWinter, turnOnEnterHouseSummer, turnOnEnterHouseWinter) {
|
375
375
|
var _this = _super.call(this, adapter, id, etage, raum, device, baseState) || this;
|
376
|
+
console.log("here: " + alexaLevelSchemeForOn);
|
377
|
+
console.log("here: " + alexaLevelSchemeForOn.getAlexaName());
|
376
378
|
_this.alexaSmartNamesForOn = alexaSmartNamesForOn;
|
377
379
|
_this.alexaSmartNamesForOff = alexaSmartNamesForOff;
|
378
380
|
_this.alexaActionNamesForOn = alexaActionNamesForOn;
|
package/shellyClasses.ts
CHANGED
@@ -441,7 +441,12 @@ export class ShellyDimmer extends AbstractShelly {
|
|
441
441
|
alexaSmartNamesForOff: string[], alexaActionNamesForOff: string[], levelSchemes: ShellyDimmerAlexaScheme[], tasterBooleanOn: ShellyDimmerTasterScheme[],
|
442
442
|
tasterBooleanOff: string[],nachtbeleuchtung:boolean, turnOffExitHouseSummer:boolean, turnOffExitHouseWinter:boolean, turnOnEnterHouseSummer:boolean, turnOnEnterHouseWinter:boolean) {
|
443
443
|
super(adapter, id, etage, raum, device, baseState);
|
444
|
-
|
444
|
+
|
445
|
+
|
446
|
+
console.log("here: " + alexaLevelSchemeForOn);
|
447
|
+
console.log("here: " + alexaLevelSchemeForOn.getAlexaName());
|
448
|
+
|
449
|
+
this.alexaSmartNamesForOn = alexaSmartNamesForOn;
|
445
450
|
this.alexaSmartNamesForOff = alexaSmartNamesForOff;
|
446
451
|
this.alexaActionNamesForOn = alexaActionNamesForOn;
|
447
452
|
this.alexaActionNamesForOff = alexaActionNamesForOff;
|