@Shockwave Thanks :) To use the module twice you can just enter multiple wunderground config sections in your config.js. It will then display both. There is no need to install the actual module twice.
Read the statement by Michael Teeuw here.

Posts
-
RE: Weatherunderground - currently - hourly - daily - configurable
-
RE: Cowboysdude's Mirror
@cowboysdude said in Cowboysdude's Mirror:
I’ll update my picture as soon as it’s done… I ordered a real glass mirror but 2" longer so I can hide the PIR and Camera behind it… the new frame will be made out of mahogany… so once the mirror comes in I’ll build the new frame… next week I’m hoping…
Not entirely sure if the PIR will work (well) behind glass… http://forum.arduino.cc/index.php?topic=123750.0
As for the camera, it’ll be getting a lot less light to work with aswell…That said, lookingforward to the result… :)
-
RE: Cowboysdude's Mirror
I’m using my own script aswell, however that just turns off/on the display. I think the module actually suspends the mirror… Saving power on the pi
-
RE: Voice control
I’ve been looking at Jasper, but would ideally like to identify a specific user by voiceprint…
-
RE: Weather Underground Forecast (wuforecast)
If this is your entire config file, than it’s to be expected it doesn’t work…
Should be something like this (using thhe sample as an …example):
/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ var config = { port: 8080, language: 'en', timeFormat: 24, units: 'metric', modules: [{ module: 'alert', }, { module: ‘wuforecast’, position: ‘top_right’, // This can be any of the regions. // Best results in left or right regions. config: { // See ‘Configuration options’ for more information. location: ‘France / Paris’, appid: ‘abcde12345abcde12345abcde12345ab’ //wunderground.com API key. } }, { module: 'clock', position: 'top_left' }, { module: 'calendar', header: 'US Holidays', position: 'top_left', config: { calendars: [{ symbol: 'calendar-check-o ', url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics' }] } }, { module: 'compliments', position: 'lower_third' }, { module: 'currentweather', position: 'top_right', config: { location: 'New York', locationID: '', //ID from bulk.openweather.org/sample/ appid: 'YOUR_OPENWEATHER_API_KEY' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather Forecast', config: { location: 'New York', locationID: '5128581', //ID from bulk.openweather.org/sample/ appid: 'YOUR_OPENWEATHER_API_KEY' } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [{ title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" }], showSourceTitle: true, showPublishDate: true } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== 'undefined') { module.exports = config; }
-
RE: Weatherunderground - currently - hourly - daily - configurable
Any errors in the console or the web inspector?
https://forum.magicmirror.builders/topic/86/how-to-troubleshoot
-
RE: Weather based on another provider..
@cowboysdude :D Glad it’s working, enjoy!
-
RE: Weatherunderground - currently - hourly - daily - configurable
@MagicCrumps1 On the other hand, you api key seems to be invalid. (if the key in your post is indeed your key):
{ "response": { "version":"0.1", "termsofService":"http://www.wunderground.com/weather/api/d/terms.html", "features": { } , "error": { "type": "keynotfound" ,"description": "this key does not exist" } }
-
RE: Weatherunderground - currently - hourly - daily - configurable
Config looks good, could you have a look at your logs?
See here for some troubleshootign info: https://forum.magicmirror.builders/topic/86/how-to-troubleshoot