Read the statement by Michael Teeuw here.
Default Weather module not loading and no error showing.
-
/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ var config = { port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], language: 'en', timeFormat: 24, units: 'metric', modules: [ { module: 'alert', }, { module: "updatenotification", position: "top_bar" }, { module: 'clock', position: 'top_left' }, { module: 'calendar', header: 'Personal Calendar', position: 'top_left', config: { calendars: [ { symbol: 'calendar-check-o ', url: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' } ] } }, { module: 'compliments', position: 'lower_third' }, { module: 'currentweather', position: 'top_right', config: { locationID: '2802154', appid: 'XXXXXXXXXXXXXXXXXXXXXXX' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather Forecast', config: { locationID: '2802154', appid: 'XXXXXXXXXXXXXXXXXXXXXXX' } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "HLN BE", url: "http://www.hln.be/rss.xml" } ], showSourceTitle: true, showPublishDate: true } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== 'undefined') {module.exports = config;}
-
That in fact looks perfectly fine. Did you try to reboot your pi to check if currentweather comes up?
Try to press F12 in the browser while MagicMirror is running and check the console for errors -
Restarted MM a couple of times. I’ll reboot the PI and see what’s happening.
-
Nope, Rebooted the PI and still nothing.
-
And console of your browser does not show a single error?
-
How do I get there? Sorry for noobish question. It runs full screen.
-
If you press F12 in your browser you should see a development interface, one is called console and should show information, warnings and - maybe - errors
-
I just tried your currentweather settings with my appid and instantly see the current weather. Did you check your appid again?
-
Registerd to the site, asked an API and that API shows in “my api” folder on the website. Already removed it and re-entered it.
-
Isn’t there a log file I can check?