iobroker-ucl 1.0.66 → 1.0.68
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/zigbeeFunctions.js +2 -2
- package/zigbeeFunctions.ts +2 -2
package/package.json
CHANGED
package/zigbeeFunctions.js
CHANGED
@@ -875,8 +875,8 @@ function getZigbeeDevices(adapter, filterCategory) {
|
|
875
875
|
adapter.getState(datenpunktPraefix + "." + attributeBaseState).val, // [1] Datenpunkt Device (z.B. hm-rpc.1.001B9D898F9CBC)
|
876
876
|
adapter.getState(datenpunktPraefix + "." + attributeEtage).val, // [2] Etage/Bereich (z.B. EG)
|
877
877
|
adapter.getState(datenpunktPraefix + "." + attributeRaum).val, // [3] Raum/Unterbereich (z.B. Wohnzimmer)
|
878
|
-
adapter.getState(datenpunktPraefix + "." + attributeDevice).val // [4] Device (z.B. Stehlampe)
|
879
|
-
|
878
|
+
adapter.getState(datenpunktPraefix + "." + attributeDevice).val, // [4] Device (z.B. Stehlampe)
|
879
|
+
adapter.getState(datenpunktPraefix + "." + attributeDosenrelais_smartNames).val.split('|') // 14 TasterBoolOff
|
880
880
|
));
|
881
881
|
}
|
882
882
|
else if (filterCategory == deviceZigbeeSchalter) {
|
package/zigbeeFunctions.ts
CHANGED
@@ -1023,8 +1023,8 @@ export function getZigbeeDevices(adapter: any, filterCategory: string) {
|
|
1023
1023
|
adapter.getState(datenpunktPraefix + "." + attributeBaseState).val, // [1] Datenpunkt Device (z.B. hm-rpc.1.001B9D898F9CBC)
|
1024
1024
|
adapter.getState(datenpunktPraefix + "." + attributeEtage).val, // [2] Etage/Bereich (z.B. EG)
|
1025
1025
|
adapter.getState(datenpunktPraefix + "." + attributeRaum).val, // [3] Raum/Unterbereich (z.B. Wohnzimmer)
|
1026
|
-
adapter.getState(datenpunktPraefix + "." + attributeDevice).val // [4] Device (z.B. Stehlampe)
|
1027
|
-
|
1026
|
+
adapter.getState(datenpunktPraefix + "." + attributeDevice).val, // [4] Device (z.B. Stehlampe)
|
1027
|
+
adapter.getState(datenpunktPraefix + "." + attributeDosenrelais_smartNames).val.split('|') // 14 TasterBoolOff
|
1028
1028
|
));
|
1029
1029
|
} else if (filterCategory == deviceZigbeeSchalter) {
|
1030
1030
|
// @ts-ignore
|