iobroker-ucl 1.4.30 → 1.4.32
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 +5 -0
- package/shellyFunctions.ts +5 -0
package/package.json
CHANGED
package/shellyFunctions.js
CHANGED
|
@@ -686,6 +686,10 @@ function loadShellyDevicesAll(adapter) {
|
|
|
686
686
|
// @ts-ignore
|
|
687
687
|
shellyAllArray.push(shelly);
|
|
688
688
|
});
|
|
689
|
+
adapter.loadShellyRauchmelder(adapter).forEach(function (shelly) {
|
|
690
|
+
// @ts-ignore
|
|
691
|
+
shellyAllArray.push(shelly);
|
|
692
|
+
});
|
|
689
693
|
adapter.loadShellySteckdosen(adapter).forEach(function (shelly) {
|
|
690
694
|
// @ts-ignore
|
|
691
695
|
shellyAllArray.push(shelly);
|
|
@@ -706,6 +710,7 @@ function clearShellyCaches(adapter) {
|
|
|
706
710
|
//shellyAllArray = null;
|
|
707
711
|
cacheSteckdosenArray = null;
|
|
708
712
|
cacheLampenWeissArray = null;
|
|
713
|
+
cacheRauchmelderArray = null;
|
|
709
714
|
cacheDimmerArray = null;
|
|
710
715
|
cacheSensorenArray = null;
|
|
711
716
|
cacheRollladenArray = null;
|
package/shellyFunctions.ts
CHANGED
|
@@ -775,6 +775,10 @@ export function loadShellyDevicesAll(adapter: any) {
|
|
|
775
775
|
// @ts-ignore
|
|
776
776
|
shellyAllArray.push(shelly);
|
|
777
777
|
});
|
|
778
|
+
adapter.loadShellyRauchmelder(adapter).forEach(shelly => {
|
|
779
|
+
// @ts-ignore
|
|
780
|
+
shellyAllArray.push(shelly);
|
|
781
|
+
});
|
|
778
782
|
adapter.loadShellySteckdosen(adapter).forEach(shelly => {
|
|
779
783
|
// @ts-ignore
|
|
780
784
|
shellyAllArray.push(shelly);
|
|
@@ -796,6 +800,7 @@ function clearShellyCaches(adapter: any) {
|
|
|
796
800
|
//shellyAllArray = null;
|
|
797
801
|
cacheSteckdosenArray = null;
|
|
798
802
|
cacheLampenWeissArray = null;
|
|
803
|
+
cacheRauchmelderArray = null;
|
|
799
804
|
cacheDimmerArray = null;
|
|
800
805
|
cacheSensorenArray = null;
|
|
801
806
|
cacheRollladenArray = null;
|