A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Fresh install
-
Hey guys…
Just finish installing a fresh install of MM2 with Raspberry pi 3, everything looks good except having issue with 2 default modules.
News feed and Calendar are never showing something. Even using the default feed and calendar!
-
@PointPubMedia Can you show us your
config.js
setup? Thanks. Just a dummy check, is your pi connected to the internet? -
/* 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', config: { alert_effect: 'genie', welcome_message: '*** Command Center started.' }, }, { module: 'clock', position: 'top_left' }, { module: 'calendar', header: 'CA Holidays', position: 'top_left', config: { calendars: [ { symbol: 'calendar-check-o ', url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics' } ] } }, { module: 'currentweather', position: 'top_right', config: { location: 'Saint-Eustache,CA', locationID: '', //ID from bulk.openweather.org/sample/ appid: 'fa2606456c60a3cb0feceaad88b5f4be' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather Forecast', config: { location: 'Saint-Eustache,CA', locationID: '5128581', //ID from bulk.openweather.org/sample/ appid: 'fa2606456c60a3cb0feceaad88b5f4be' } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "LaPresse", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" }, { title: "BBC", url: "http://feeds.bbci.co.uk/news/video_and_audio/news_front_page/rss.xml?edition=uk", }, ], showSourceTitle: true, showPublishDate: true } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== 'undefined') {module.exports = config;}
And yes I have access to Internet, weather is working ;)
-
That’s very strange…
I reboot the raspberry for another reason and now, everything is working…
-
Glad I could help! :-/
-
That likely happened because the respective node fetchers didn’t start when you first tried it. Killing the app and restarting it would’ve fixed that … and by rebooting the pi, you accomplished the same thing.