Read the statement by Michael Teeuw here.
Need help with internet monitor-module
-
did you install the dependencies as per the readme? I just installed this, installed the dependencies, and it fired right up.
-
@Mykle1 said in Need help with internet monitor-module:
did you install the dependencies as per the readme? I just installed this, installed the dependencies, and it fired right up.
yes i did, but i can do it again:)
-
I don’t see any problem with it. But to be on the safe side, I changed the single quotes in the config object for the internet-monitor to double quotes (as the rest of the file), what Schlachtkreuzer said. Again, shouldn’t be an issue – unless it’s conflicting with single quotes in a different place.
,{ module: "internet-monitor", position: "top_center", header: "Internet Monitor", config:{ type: "", maxTime: 20000, updateInterval: 0, verbose: false, displayStrength: true, displaySpeed: true, strengthIconSize: 80, maxGaugeScale: 100, wifiSymbol:{ size: 50, fullColor: "#3afc25", almostColor: "#ffff0c", halfColor: "#ff8c00", noneColor: "#ff1111" } } }
What happens if you leave out that module? Does it work then?
Are there any errors listed in the console where you start the mirror? Any errors listed in the browser’s console (if you start it withnpm start dev
)? -
Try this
module: "internet-monitor", position: "top_center", header: "Internet Monitor", config:{ type: "", maxTime: "20000", updateInterval: "0", verbose: "false", displayStrength: "true", displaySpeed: "true", strengthIconSize: "80", maxGaugeScale: "100", wifiSymbol:{ size: "50", fullColor: "#3afc25", almostColor: "#ffff0c", halfColor: "#ff8c00", noneColor: "#ff1111" } } }
-
That doesn’t make sense, the functions are expecting integer and boolean, not strings.
But maybe I found something while checking the module’s readme for the variables and default config:
“Please note that updateInterval has to be greater than maxTime”
-
My config entry:
{ module: 'internet-monitor', position: 'top_center', header: 'Internet Monitor', config:{ type: '', maxTime: 20000, updateInterval: 0, verbose: false, displayStrength: true, displaySpeed: true, strengthIconSize: 80, maxGaugeScale: 100, } },
And my result:
-
@Mykle1 I got it now! I just reinstalled it, tnx:)
-
Well done, mate.