Sure, I can post that. The config checker doesn’t find any issues. Any help appreciated.
/* Magic Mirror Config Sample
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var config = {
port: 8080,
language: 'en',
timeFormat: 12,
units: 'imperial',
modules: [
{
module: 'alert',
},
{
module: 'MMM-Motion-Detection',
},
{
module: 'clock',
position: 'top_left'
},
{
module: 'MMM-Nest',
position: 'bottom_right',
config: {
token:"xxx"
}
},
{
module: 'calendar',
header: 'Calendar',
position: 'top_left',
config: {
calendars: [
{
symbol: 'calendar-check-o ',
url: 'xxx'
}
]
}
},
{
module: 'currentweather',
position: 'top_right',
config: {
location: 'xxx',
locationID: 'xxx', //ID from http://www.openweathermap.org
appid: 'xxx'
}
},
{
module: 'weatherforecast',
position: 'top_right',
header: 'Weather Forecast',
config: {
location: 'xxx',
locationID: 'xxx', //ID from http://www.openweathermap.org
appid: 'xxx'
}
},
{
module: 'newsfeed',
position: 'bottom_bar',
config: {
feeds: [
{
title: "ArsTechnica",
url: "http://feeds.arstechnica.com/arstechnica/index/",
},
{
title: "NPR",
url: "http://www.npr.org/rss/rss.php?id=1001"
}
],
showSourceTitle: true,
showPublishDate: true
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {module.exports = config;}