iobroker-ucl 1.1.33 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker-ucl",
3
- "version": "1.1.33",
3
+ "version": "1.1.34",
4
4
  "main": "main.js",
5
5
  "scripts": {
6
6
  "build": "tsc --build",
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
- this.alexaSmartNamesForOn = alexaSmartNamesForOn;
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;