Read the statement by Michael Teeuw here.
MMM-soccer v2
-
-
@matze86 said in MMM-soccer v2:
Great! I‘ll Update the Module soon
Maybe with a different colour for the Position?
So I checked the API output. Unfortunately we don’t have a reference for the recent table position.
"table": [{ "position": 1, "team": { "id": 5, "name": "FC Bayern München", "crestUrl": "https://crests.football-data.org/5.svg" }, "playedGames": 26, "form": "W,W,W,W,L", "won": 19, "draw": 4, "lost": 3, "points": 61, "goalsFor": 78, "goalsAgainst": 35, "goalDifference": 43 }, ...
We would have to call the API again for the last matchday’s table, which consumes API calls.
I’m not sure if I want that.
I still very much like the idea however.Also, you can see there’s no reference to relegation or qualification ranks
-
Allright… Too Bad…
Here you can see my momentary Soccer Dashboard. I copied your module three times with different configs.
But i‘m Not statisfied with the Symbols of fontawesome. Are there other Styles possible?
I think the api also does Not give the Information about the time of Match? -
@matze86 said in MMM-soccer v2:
I think the api also does Not give the Information about the time of Match?
It does.
Usually APIs work with timestamps or date strings including date and time.
My module is set to only show the time at the day of match. It does not show date AND time due to limited space.if (match.status == "SCHEDULED" || match.status == "POSTPONED") { match.state = (moment(match.utcDate).diff(moment(), 'days') > 7) ? moment(match.utcDate).format("D.MM.") : (moment(match.utcDate).startOf('day') > moment()) ? moment(match.utcDate).format("dd") : moment(match.utcDate).format("LT");
-
thx. now i’ll come closer to a perfect overview :thumbs_up:
-
Hi @lavolp3 I downloaded your module from here:
https://bytemeta.vip/repo/lavolp3/MMM-soccerBut for some reason the results of the Champions League do not show the logos of the teams and also the results seem to me formatted badly.
Am I doing something wrong?
Follow a screenshot:
Here is the config.js:
{ module: 'MMM-soccer', position: 'top_right', config: { api_key: '2c709c5e9c9a491a88b810c43ae00f0e', show: ['SA'], colored: true, logos: true, updateInterval: 60, showTables: false, focus_on: { 'SA': 'FC Juventus' }, max_teams: 5, matchType: 'league' } }, { module: 'MMM-soccer', position: 'top_left', config: { api_key: '2c709c5e9c9a491a88b810c43ae00f0e', show: ['CL'], logos: true, colored: true, updateInterval: 60, focus_on: { 'CL': 'FC Juventus' }, max_teams: 5, matchType: 'league' } },
Thanks.
-
Hello,
the same here with FL1 league.
-
Hello @lavolp3 !
Please don’t let this “module” die. You are the last.
You are Highlander !! :D -
@thymon thanks thymon for the wake up call. I am updating the module right now. Logos already work again. Stay tuned!
-
@thymon
please do a git pull and check out.
Hope it works!
Got a bit rusty on the programming after 3 years…