iobroker-ucl 1.1.14 → 1.1.15
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 -0
- package/shellyFunctions.ts +2 -0
package/package.json
CHANGED
package/shellyFunctions.js
CHANGED
@@ -480,6 +480,7 @@ function loadShellySensoren(adapter) {
|
|
480
480
|
return cacheSensorenArray;
|
481
481
|
}
|
482
482
|
exports.loadShellySensoren = loadShellySensoren;
|
483
|
+
console.log("test");
|
483
484
|
/*var cacheLampenRGBArray = null;
|
484
485
|
export function loadShellyLampenRGB(adapter: any) {
|
485
486
|
if (cacheLampenRGBArray != null) {
|
package/shellyFunctions.ts
CHANGED
@@ -515,6 +515,8 @@ export function loadShellySensoren(adapter: any) {
|
|
515
515
|
return cacheSensorenArray;
|
516
516
|
}
|
517
517
|
|
518
|
+
console.log("test");
|
519
|
+
|
518
520
|
/*var cacheLampenRGBArray = null;
|
519
521
|
export function loadShellyLampenRGB(adapter: any) {
|
520
522
|
if (cacheLampenRGBArray != null) {
|