Read the statement by Michael Teeuw here.
MMM-MyScoreboard
-
From my standpoint, the only thing that stopped working for me were any of the feeds that used the Sportsnet provider. But I am seeing some anecdotal reports of the ESPN provider also not working? Could anyone provide some examples of this? ESPN is working for me as-is.
-
New update released. This is a big one. Addresses the following:
- Correction of SNET provider ticker URL
- Change of ESPN provider URL to HTTPS
- Replacement of deprecated library Request with Axios
- Addition of WNBA and NCAAW womens’ basketball leagues
- Team logo updates for North American leagues
- Correction of NCAA team shortcode for Wisconsin Badgers from
WIStoWISC
As this has a replacement of a module, you’ll need to run
npm installafter doing agit pullin the MMM-MyScoreBoard directoryA note on ESPN’s feed. I have seen a number of posts reporting that the it sporadically stops working. As of right now the ESPN feed works properly for me, but I did notice over the course of the last couple of day’s testing that sometimes the request out to ESPN is not answered in a timely manner. Eventually ESPN will update, but sometimes it is slow. I have made a change so that the request is made over HTTPS instead of HTTP, and my testing since then has shown the feed to be more reliable. Of course, this could just be a complete coincidence, and it’s equally as likely that we’ll continue to see issues with ESPN-sourced scoreboard data.
Once again, sorry for the LOOOOOOONG delay in addressing this. My mirror has sat unattended to for quite some time, and I only recently got around to rebuilding things. A number of my modules had stopped working, not just this one. Hopefully, this gets everyone back up and running.
-
@j-e-f-f This can definitely be a future improvement but is there a way to get support for some of the relatively recent expansion MLS teams or if I use their codes, would it just work without additional code (especially with the ESPN update)?
-
@Wenike said in MMM-MyScoreboard:
@j-e-f-f This can definitely be a future improvement but is there a way to get support for some of the relatively recent expansion MLS teams or if I use their codes, would it just work without additional code (especially with the ESPN update)?
The recent update already includes all current 28 MLS teams. However any future additional teams will work provided you know the shortcode. MLS is provided by SportsNet, not ESPN, and if you can figure out the shortcode SportsNet uses for any new team, you can follow that team specifically. Otherwise, if you just follow the league, the new team will appear as it comes through the feed without any intervention on your part. I also changed MLS to pull the team logo images from the data feed, so there won’t be any missing logos either.
-
@j-e-f-f
Hi Jeff,My MM Scoreboard shows the times of the coming matches wrong,
They are displayed as to air 1 hour early,
Is this because your API calls from ESPN in America when i am in the UK?could you help with getting this changed to local time,
The clock on my MM is correct and i would assume the date and times are pulled from the same part
-
Noctis: that looks like a daylight savings issue. We’re still in DST until 2nd Sun of November, I don’t know your status.
-
@BKeyport
Hi BKeyport,That makes sense,
We are in daylight savings for another 20 days,i will see if that changes after the change,
thank you
-
@Noctis25 One thing you could double check as you’re in England. Are you using the right clock locale (Europe/London versus GMT)? Is your clock observing DST correctly?
Daylight savings is a horrible thing, as is timezones.
-
@j-e-f-f Thanks for fixing the module! ;-)
I have tried your module and I believe that all the most popular football rankings do not work.I tried with:
-
ITA_SERIES_A
-
ESP_LALIGA
-
GER_BUNDESLIGA
but nothing is shown.
For example NHL League works …
Could you help me?
Thanks.
-
-
Working great with today’s games for NHL, Eng Premier & League 1; however when I set a value for rolloverHours this switches to only showing the previous days scores and doesn’t display anything for today? Assuming my formatting is correct? Just:
rolloverHours: 12, -
Updated my mirror and now the module is stuck with the message “Loading…”
I’ve updated the module since a new version came out but I still have the same problem.
I’ve also tried deleting the MMM-MyScoreboard directory and did a new pull and install but still no success.
In the console I get a MESA-LOADER: failed to retrieve device information. My GoogleFu failed to produce success.
-
@SirFM I would open an issue in the modules GitHub to engage the author.
how did u upgrade mm? manual or use my script?
-
@sdetweil Manual
-
i am liking this module however when inspecting it, there is a parameter mismatch in module.show: callback is not an optional parameter! showing line 392 on module.js. is this something with this module or something with the new update of MagicMirror?
-
@richmp95
MM2.24 changed some codes then showing somewhat annoying “error” message. Not related with real “error”, just ignore it. -
Hi everyone and thanks fore the MMM-MyScoreboard module who is running just fine. I’m wondering why one team disapear of the scoreboard ? During the day i can see teams i setup to be listed and the hour the game is but when its time for the game to be played then one team (MTL as for Montreal Canadiens in NHL) disapear from the scoreboard with the team the play against, that game ain’t show live stats but every other teams i can follow on screen.
Is there a place to look at if that team isnt’ write correctly for the live score? Or is it something else that i miss like in the setting?
Regards
-
@j-e-f-f how do you reduce the font size of the content? i maanged to reduce them in css but then when the next game appear, the entire thing is back to default.
these are the 2 css i made but it seems like it doesnt port over to another game…
.MMM-MyScoreboard .box-score.stackedWithLogos.home-team-first .score.home { left: 120px; font-size: 0.8rem; } .MMM-MyScoreboard .box-score.stackedWithLogos.home-team-first .score.visitor { left: 120px; font-size: 0.8rem; } -
@1a2a3a said in MMM-MyScoreboard:
.MMM-MyScoreboard .box-score.stackedWithLogos.home-team-first .score.visitor
the logic of your css selector clause is
.MMM-MyScoreboard .box-score.stackedWithLogos.home-team-first .score.visitorelements in elements with class MMM-MyScoreboard
AND
elements with ALL classes specified on the same element.box-score.stackedWithLogos.home-team-firstclasses box-score **AND** stackedWithLogos **AND** home-team-firstAND
elements with ALL classes specified on the same element.score.visitorclasses score **AND** visitor -
@sdetweil i dont understand sam…
did you mean like this?
.MMM-MyScoreboard .box-score AND stackedWithLogos AND home-team-first .score AND visitor { left: 120px; font-size: 0.8rem; } -
@1a2a3a I was specifying the logic of you selector clause
. means class
if there are multiple . in a string with no spaces it means
all these classes MUST be specified on the element explicitlyso you have some weak ands (with spaces)
.MMM-MyScoreboard (weak and) .box-score.stackedWithLogos.home-team-first (weak and) .score.visitorand some ABSOLUTE ands
.box-score(ABSOLUTE and).stackedWithLogos(ABSOLUTE and).home-team-first
all these classes MUST be on the same element
class=“box-score stackedWithLogos home-team-first”
and
.score(ABSOLUTE and).visitor
class=“score visitor”
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login
