@cowboysdude I still can’t get it to work. Ill try reinstalling NOOBS and magicmirror and see if it gets any better
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
M
Posts made by MatthewCowell
-
RE: Config.js issues
-
RE: Config.js issues
@cowboysdude Still not working. Thank you for the help!
-
RE: Config.js issues
@strawberry-3.141 I have removed them but it still doesn’t work. Thank you for helping
-
Config.js issues
I am having some issues with the config.js file. When I turn on my pi and the Mirror client loads it tells me to create a config file. Here is the the file (with a few things removed):
/* 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: "updatenotification", position: "top_bar" }, { 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: 'Bolton', locationID: '2655237' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather Forecast', config: { location: 'Bolton', locationID: '2655237'``` } }, { 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;}
Please tell me if you find any errors in the code. I can’t find anything online that works.