iobroker-ucl 1.4.19 → 1.4.20
Sign up to get free protection for your applications and to get access to all the features.
- package/homematicFunctions.js +5 -0
- package/homematicFunctions.ts +5 -0
- package/package.json +1 -1
package/homematicFunctions.js
CHANGED
@@ -896,6 +896,10 @@ function loadHomematicDevicesAll(adapter) {
|
|
896
896
|
// @ts-ignore
|
897
897
|
homematicAllArray.push(homematic);
|
898
898
|
});
|
899
|
+
adapter.loadHomematicHeizkoerpergruppe(adapter).forEach(function (homematic) {
|
900
|
+
// @ts-ignore
|
901
|
+
homematicAllArray.push(homematic);
|
902
|
+
});
|
899
903
|
adapter.loadHomematicDimmer(adapter).forEach(function (homematic) {
|
900
904
|
// @ts-ignore
|
901
905
|
homematicAllArray.push(homematic);
|
@@ -916,6 +920,7 @@ function clearHomematicCaches(adapter) {
|
|
916
920
|
//homematicAllArray = null;
|
917
921
|
cacheDimmerArray = null;
|
918
922
|
cacheHeizkoerperArray = null;
|
923
|
+
cacheHeizkoerpergruppeArray = null;
|
919
924
|
cacheSteckdosenArray = null;
|
920
925
|
cacheWindowsArray = null;
|
921
926
|
cacheFunkschaltaktorenArray = null;
|
package/homematicFunctions.ts
CHANGED
@@ -974,6 +974,10 @@ export function loadHomematicDevicesAll(adapter: any) {
|
|
974
974
|
// @ts-ignore
|
975
975
|
homematicAllArray.push(homematic);
|
976
976
|
});
|
977
|
+
adapter.loadHomematicHeizkoerpergruppe(adapter).forEach(homematic => {
|
978
|
+
// @ts-ignore
|
979
|
+
homematicAllArray.push(homematic);
|
980
|
+
});
|
977
981
|
adapter.loadHomematicDimmer(adapter).forEach(homematic => {
|
978
982
|
// @ts-ignore
|
979
983
|
homematicAllArray.push(homematic);
|
@@ -995,6 +999,7 @@ function clearHomematicCaches(adapter: any) {
|
|
995
999
|
//homematicAllArray = null;
|
996
1000
|
cacheDimmerArray = null;
|
997
1001
|
cacheHeizkoerperArray = null;
|
1002
|
+
cacheHeizkoerpergruppeArray = null;
|
998
1003
|
cacheSteckdosenArray = null;
|
999
1004
|
cacheWindowsArray = null;
|
1000
1005
|
cacheFunkschaltaktorenArray = null;
|