Read the statement by Michael Teeuw here.
MMM-MyScoreboard
-
@gashion likely nothing :). The app is designed to only show games that are scheduled or in progress “today.” Only NBA is in progress right now. You won’t see EPL or Bundesliga matches until March 31, and FIFA World Cup doesn’t get underway until June.
Just to be sure though… to have support for the new soccer leagues you need to be on the
add_more_soccer
branch:git pull git checkout add_more_soccer
Also, in your config, you’ve specified an array with a single element of an empty string. This won’t match anything, and therefore FIFA games will never be shown. If you want to see all teams just leave out the
teams
parameter altogether. -
@j.e.f.f said in MMM-MyScoreboard:
If you want to see all teams just leave out the teams parameter altogether.
Will this apply on every league and sport? If i just add like this:
{ league: "EPL", }, { league: "FIFAWC", }, { league: "BUNDESLIGA", }, { league: "NHL", }, { league: "NBA", }, }
Will it show all the games?
and i have support for the new soccer leagues.
-
@gashion yes, that’s correct.
-
For some reason, the formatting is off on my display. It displays the module header but the scores are displayed in one line across the middle of the screen. Please help!
-
@xclsior can you post a screenshot and your config?
-
Here is the config:
{ module: "MMM-MyScoreboard", position: "top_right", classes: "default_everyone", header: "My Scoreboard", config: { showLeagueSeparators: true, colored: true, viewStyle: "oneLineWithLogos", sports: [ { league: "NBA", teams: [""], groups: ["East","West"] } ] } },
-
Here’s the link to the screenshot: https://imgur.com/a/cfiQn
Sorry for the poor quality. Cropping it was becoming a pain so I just took a picture. I would love your advise on the MyWeather module too but that’s outside this thread. :)
-
@xclsior it looks like you want to see all NBA games, so there’s no need to specify a
teams
array or agroups
array. -
@xclsior but I can’t see why yours is rendering the way it is. I winder if another module is conflicting…
Can you try disabling all the other modules and see if it fixes the Scoreboard? If it does, enable them one at a time until you see the rendering problem again. I’ll look into that module to see if it has CSS that’s affecting the scoreboard.
-
@j.e.f.f I’ll try that and let you know what happens!