When the module first loads, it shows just the specified teams correctly, but quickly refreshes and shows all games. Interestingly, the "showUpcomingGames" option seems to correctly filter based on the teams array. I don't know if it makes a difference, but I'm running a central MagicMirror instance on a virtual machine and the display is in a kiosk mode. I also installed the module using MMPM. Here's the config section I'm using:
{
module: "MMM-MyScoreboard",
position: "bottom_left",
config: {
viewStyle: "oneLineWithLogos",
showUpcomingGames: true,
sports: [
{
league: "NFL",
teams: ["CAR", "TB", "NO", "ATL"]
},
{
league: "NCAAF",
groups: ["SEC"]
}
]
}
}
When the module first loads, it shows just the specified teams correctly, but quickly refreshes and shows all games. Interestingly, the "showUpcomingGames" option seems to correctly filter based on the teams array. I don't know if it makes a difference, but I'm running a central MagicMirror instance on a virtual machine and the display is in a kiosk mode. I also installed the module using MMPM. Here's the config section I'm using: