iobroker-ucl 1.1.55 → 1.1.56

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.55",
3
+ "version": "1.1.56",
4
4
  "main": "main.js",
5
5
  "scripts": {
6
6
  "build": "tsc --build",
@@ -525,8 +525,7 @@ function loadShellyDimmer(adapter) {
525
525
  var alexaOnScheme = null;
526
526
  if (adapter.getState(datenpunktPraefix + "." + attributeDimmer_alexaScheme_aktiv).val == true) {
527
527
  // @ts-ignore
528
- alexaOnScheme = new ShellyDimmerAlexaScheme > (null,
529
- adapter.getState(datenpunktPraefix + "." + attributeDimmer_alexaScheme_level).val);
528
+ alexaOnScheme = new ShellyDimmerAlexaScheme(null, adapter.getState(datenpunktPraefix + "." + attributeDimmer_alexaScheme_level).val);
530
529
  }
531
530
  adapter.log("loadShellyDimmer do it!!!!_f1");
532
531
  // Weitere Schemes als Array:
@@ -568,7 +568,7 @@ export function loadShellyDimmer(adapter: any) {
568
568
  var alexaOnScheme = null;
569
569
  if (adapter.getState(datenpunktPraefix + "." + attributeDimmer_alexaScheme_aktiv ).val == true) {
570
570
  // @ts-ignore
571
- alexaOnScheme = new ShellyDimmerAlexaScheme>(null,
571
+ alexaOnScheme = new ShellyDimmerAlexaScheme(null,
572
572
  adapter.getState(datenpunktPraefix + "." + attributeDimmer_alexaScheme_level ).val
573
573
  );
574
574
  }