Hey @lavolp3
I want to show the next matches of my team and this doesn’t work.
If I change ‘league’ to ‘next’ (or ‘daily’) the screen displays only the header of the league table ("teams, games & goal difference).
focus_on in combination with " matchtype: ‘league’ " works. My team is highlighted. (see the first config):
{
module: 'MMM-soccer',
position: 'top_right',
config: {
api_key: 'my api',
show: ['BL1'],
colored: true,
focus_on: {
'BL1': 'FC Bayern München',
},
matchType: 'league'
}
},
here is my “next” config of this module, which doesn’t work.
{
module: 'MMM-soccer',
position: 'top_right',
config: {
api_key: 'my api',
show: ['BL1'],
colored: true,
focus_on: {
'BL1': 'FC Bayern München',
},
matchType: 'next',
numberOfNextMatches: 5
}
},