Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-MyCommute posted in Transport
-
RE: PIR Sensor with Client Only option
It’s not a module but a python script which runs on the client…
-
RE: PIR Sensor with Client Only option
Hi,
Why not use this: https://github.com/cowboysdude/Pir-Sensor? Works great for me.
-
RE: MMM-DarkSkyForecast - Yet ANOTHER weather module
@j-e-f-f :) This looks familiar… well done!
-
RE: MMM-Wunderground - 2 locations gives duplicate data from the first location
@jamielola Hi!
You’ll also have to change the notifications (GET_WUNDERGROUND (request) and WUNDERGROUND (the reply sent by node_helper). Those notifications go systemwide so when 2 modules send the same one, the first one wins… The trick is to make them unique to the instance.
-
RE: multiple module instances overwrites itself values
Having the same problem with my module… A theoretical solution could be to make node_helper multi instance aware by appending some identifier to the notification unique to the instance: ie GET_WEATHER_001… The helper triggers on GET_WEATHER and builds an array with the different notifications and payloads. It then periodically runs through the array getting the appropriate requests and sending out notifications like WEATHER_001 with the specific payload.
Haven’t built it yet though…
-
RE: MMM-WunderGround - not appearing in Mirror
Hi!
Did your log show errors similar to:
0|mm | WARNING! Could not validate config file. Please correct syntax errors. Starting with default configuration.
In your post above there are weird (double) quotes that proved problematic when trying your config. This one works fine on my setup:
module: "MMM-WunderGround", position: "top_right", header: "", config: { apikey: "xxxxxxxxxxxxxxxx", pws: "pws:IPORTSMO30", currentweather: 0, coloricon: true, hourly: "1", fcdaycount: "10", hourlyinterval: "2", hourlycount: "1", animationSpeed: 5000, alerttime: 10000, alerttruncatestring: "english:", roundTmpDecs: 0, UseCardinals: 1, windunits: "mph", sysstat: "0" } },
Good luck! -
RE: MMM-Wunderground - 2 locations gives duplicate data from the first location
Hi,
This is because of offloading scheduling to the node_helper.js. Have a look here: https://github.com/RedNax67/MMM-WunderGround/issues/20