Hi guys! I know that this topic is quite old, but I am trying to add this module to my magic mirror unsuccesfully.
I added in the “config.js” file the module but it doesn’t show up. Any ideas on what i’ve done wrong?
modules: [
{
module: "alert",
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: "clock",
position: "top_left"
},
{
module: "calendar",
header: "Calendario di Google",
position: "top_left",
config: {
calendars: [
{
symbol: "calendar-check",
url: "MY CALENDAR" }
]
}
},
{
module: "compliments",
position: "lower_third"
},
{
module: "currentweather",
position: "top_right",
config: {
location: "Savona, Italy",
locationID: "6542009", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
appid: "MYAPPID"
}
},
{
module: "weatherforecast",
position: "top_right",
header: "Previsioni Meteo:",
config: {
location: "Savona, Italy",
locationID: "6542009", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
appid: "MYAPPID"
}
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "ANSA",
url: "https://www.ansa.it/sito/ansait_rss.xml"
}
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true
}
},
{
disabled: false,
module: “MMM-NewsFeedTicker”,
position: “bottom_bar”,
//classes: “day_scheduler”,
config: {
feeds: [
{
title: “New York Times”,
url: “http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml”,
customLogo: “NYT_logo_rss_250x40.png”
},
{
title: “USA Today”,
url: “http://rssfeeds.usatoday.com/UsatodaycomNation-TopStories”,
customLogo: “RSS_Syndication_Logo-USATN.png”
},
{
title: “BBC World News”,
url: “http://feeds.bbci.co.uk/news/world/rss.xml#”,
customLogo: “bbc_news_120x60.gif”
}
]
}
},
]
};
Thanks in advance!