iobroker-ucl 1.1.21 → 1.1.22
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/shellyFunctions.js +1 -1
- package/shellyFunctions.ts +2 -2
package/package.json
CHANGED
package/shellyFunctions.js
CHANGED
@@ -633,7 +633,7 @@ function loadShellySteckdosen(adapter) {
|
|
633
633
|
var datenpunktPraefix = datenpunktKey.replaceAll(".category", "");
|
634
634
|
if (adapter.getState(datenpunktKey).val == deviceShellySteckdose) {
|
635
635
|
// @ts-ignore
|
636
|
-
|
636
|
+
cacheSteckdosenArray.push(new ShellySteckdose(adapter, adapter.getState(datenpunktPraefix + "." + attributeRawID).val, // [0] Device-ID (z.B. 1 --> In der Anzeige wird daraus "H01")
|
637
637
|
adapter.getState(datenpunktPraefix + "." + attributeEtage).val, // [1] Etage/Bereich (z.B. EG)
|
638
638
|
adapter.getState(datenpunktPraefix + "." + attributeRaum).val, // [2] Raum/Unterbereich (z.B. Wohnzimmer)
|
639
639
|
adapter.getState(datenpunktPraefix + "." + attributeDevice).val, // [3] Device (z.B. Stehlampe)
|
package/shellyFunctions.ts
CHANGED
@@ -718,8 +718,8 @@ export function loadShellySteckdosen(adapter: any) {
|
|
718
718
|
if (adapter.getState(datenpunktKey).val == deviceShellySteckdose) {
|
719
719
|
|
720
720
|
// @ts-ignore
|
721
|
-
|
722
|
-
adapter.
|
721
|
+
cacheSteckdosenArray.push(new ShellySteckdose(adapter,
|
722
|
+
adapter.getState(datenpunktPraefix + "." + attributeRawID).val, // [0] Device-ID (z.B. 1 --> In der Anzeige wird daraus "H01")
|
723
723
|
adapter.getState(datenpunktPraefix + "." + attributeEtage).val, // [1] Etage/Bereich (z.B. EG)
|
724
724
|
adapter.getState(datenpunktPraefix + "." + attributeRaum).val, // [2] Raum/Unterbereich (z.B. Wohnzimmer)
|
725
725
|
adapter.getState(datenpunktPraefix + "." + attributeDevice).val, // [3] Device (z.B. Stehlampe)
|