Read the statement by Michael Teeuw here.
Adding Modules
-
This post is deleted! -
@johnnyboy most of the modules are listed here https://github.com/MichMich/MagicMirror/wiki#3rd-party-modules
Also most of the developers have install instructions in their readme file
This module is what you are looking for https://github.com/RedNax67/MMM-WunderGround
- Open the terminal
- Go to the modules directory
cd ~/MagicMirror/modules
- Clone the module
git clone https://github.com/RedNax67/MMM-WunderGround.git
(The following steps are not documented)
4. Go to the module directorycd MMM-Wunderground
5.As the developer did not provide a package.json file you have to manually install the dependencies, which are in this case request and moment,npm install request moment
. If there is a package.json file you can just donpm install --productive
which will install all dependencies defined by the developer or donpm install
which will also download dependencies which are only needed for developing.(Back to the documented part)
6. Add the module to the config{ module: 'MMM-WunderGround', position: 'top_right', config: { apikey: 'xxxxxxxxxxxxx', // fill in your api_key that you applied for on wunderground pws: 'pws:IGELDERL219', //add your location for the weather service hourly: '1', fctext: '1', fcdaycount: "5", fcdaystart: "0", hourlyinterval: "3", hourlycount: "2", alerttime: 10000, alerttruncatestring: "english:", roundTmpDecs: 1, UseCardinals: 0, layout: "horizontal", sysstat: 0 } }
Don’t add the semicolon as it is in the readme this will cause issues. Then restart your mirror
-
This post is deleted! -
@johnnyboy said in Adding Modules:
First off, a massive shout out to Mykle1 for helping me to do in minutes, what took me many hours trying… Thanks a lot for that, much appreciated
You’re welcome buddy. It wasn’t very long ago that I was in the very same place that you are in now. Some very fine people helped me get under way, and continue to help me. I repay them by helping others, where and when I can. I can see you’re in very good hands with Strawberry 3.141 assisting you. He was, and still is, instrumental in helping me perfect my MM. I’ll help you with the easy stuff. He’ll handle the genius side of things. :smile:
-
This post is deleted! -
This post is deleted! -
@johnnyboy only the part that i posted
-
This post is deleted! -
@johnnyboy if you have done
npm install request moment
than you can ignore the warnings about the missing file you’re good to continue, if you have donenpm install --productive
nothing happened because he cant read data out of an file that doesnt exist. -
This post is deleted!