iobroker-ucl 1.0.77 → 1.0.78
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/homematicFunctions.js +2 -2
- package/homematicFunctions.ts +2 -2
- package/package.json +1 -1
- package/zigbeeFunctions.js +2 -2
- package/zigbeeFunctions.ts +2 -2
package/homematicFunctions.js
CHANGED
@@ -28,9 +28,9 @@ function createDatenpunktSingle(adapter, deviceRawId, attributeType, attributeNa
|
|
28
28
|
read: true,
|
29
29
|
write: true
|
30
30
|
});
|
31
|
-
if (adapter.getState(stateDatenpunkt).val != attributeValue) {
|
31
|
+
/*if (adapter.getState(stateDatenpunkt).val != attributeValue) {
|
32
32
|
adapter.setState(stateDatenpunkt, attributeValue);
|
33
|
-
}
|
33
|
+
}*/
|
34
34
|
}
|
35
35
|
function getHomematicDevices(adapter, filterCategory) {
|
36
36
|
var homematicArray = [];
|
package/homematicFunctions.ts
CHANGED
@@ -28,9 +28,9 @@ function createDatenpunktSingle(adapter: any, deviceRawId, attributeType, attrib
|
|
28
28
|
read: true,
|
29
29
|
write: true
|
30
30
|
});
|
31
|
-
if (adapter.getState(stateDatenpunkt).val != attributeValue) {
|
31
|
+
/*if (adapter.getState(stateDatenpunkt).val != attributeValue) {
|
32
32
|
adapter.setState(stateDatenpunkt, attributeValue);
|
33
|
-
}
|
33
|
+
}*/
|
34
34
|
}
|
35
35
|
|
36
36
|
export function getHomematicDevices(adapter: any, filterCategory: string) {
|
package/package.json
CHANGED
package/zigbeeFunctions.js
CHANGED
@@ -669,9 +669,9 @@ function createDatenpunktSingle(adapter, deviceRawId, attributeType, attributeNa
|
|
669
669
|
read: true,
|
670
670
|
write: true
|
671
671
|
});
|
672
|
-
if (adapter.getState(stateDatenpunkt).val != attributeValue) {
|
672
|
+
/*if (adapter.getState(stateDatenpunkt).val != attributeValue) {
|
673
673
|
adapter.setState(stateDatenpunkt, attributeValue);
|
674
|
-
}
|
674
|
+
}*/
|
675
675
|
}
|
676
676
|
function toStringArray(databaseValue) {
|
677
677
|
var stringArray = [];
|
package/zigbeeFunctions.ts
CHANGED
@@ -713,9 +713,9 @@ function createDatenpunktSingle(adapter:any, deviceRawId, attributeType, attribu
|
|
713
713
|
read: true,
|
714
714
|
write: true
|
715
715
|
});
|
716
|
-
if (adapter.getState(stateDatenpunkt).val != attributeValue) {
|
716
|
+
/*if (adapter.getState(stateDatenpunkt).val != attributeValue) {
|
717
717
|
adapter.setState(stateDatenpunkt, attributeValue);
|
718
|
-
}
|
718
|
+
}*/
|
719
719
|
}
|
720
720
|
|
721
721
|
function toStringArray(databaseValue) { // z.B. "Werkbank|Arbeiten|Keller"
|