@buzzkc Hey, thanks for all the help.
Turns out there was some error during installation. I uninstalled and re-installed the module and it runs perfectly now! :D
Read the statement by Michael Teeuw here.
Best posts made by ambujsethi
-
RE: MMM-soccer wont't show up
Latest posts made by ambujsethi
-
RE: Missing Club Logos in MMM-Soccer
@sdetweil Thank you! I’ll try it out and hopefully solve the issue. :)
-
RE: Missing Club Logos in MMM-Soccer
@sdetweil I’m having the same issue but I don’t understand what you mean by the developers window here. What is that, exactly?
Thanks. -
RE: MMM-soccer wont't show up
@buzzkc Hey, thanks for all the help.
Turns out there was some error during installation. I uninstalled and re-installed the module and it runs perfectly now! :D -
RE: MMM-soccer wont't show up
@buzzkc Did that too. Still won’t show up.
I’m at a point where I have no clue what’s wrong here. :/ -
RE: MMM-soccer wont't show up
@buzzkc Yes I did.
Will I have to move it out of the default folder into MagicMirror/modules?Also, it turns out, the name of the module was MMM-soccer-master, and I changed that in the config file but still no result.
-
MMM-soccer wont't show up
Hey there guys, I’m a newbie to programming and I started working on the Magic Mirror a couple of days ago. I could manage to get everything up and running, but after I installed my MMM-soccer module, I somehow can’t get it to show up in the mirror. Rest everything is working fine. Here’s my config file, if that would be of any help.
Thanks!language: "en", timeFormat: 24, units: "metric", modules: [ { module: "alert", }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: "calendar", header: "Indian Holidays", position: "top_left", config: { calendars: [ { symbol: "calendar-check", url: "webcal://www.calendarlabs.com/ical-calendar/ics/33/India_Holidays.ics" } ] } }, { module: "compliments", position: "lower_third" }, { module: "currentweather", position: "top_right", config: { location: "Raipur, India", locationID: "1258980", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city appid: "hidden" } }, { module: "weatherforecast", position: "top_right", header: "Weather Forecast", config: { location: "Raipur, India", locationID: "1258980", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city appid: "hidden" } }, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "Times of India", url: "http://timesofindia.indiatimes.com/rssfeeds/-2128936835.cms" } ], showSourceTitle: true, showPublishDate: true, broadcastNewsFeeds: true, broadcastNewsUpdates: true } }, { module: 'MMM-soccer', position: 'bottom_left', config: { api_key: 'hidden', show: 'ENGLAND', logos: true, colored: false, max_teams: 10 } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;}