March Madness
Maybe someone has moved this down the road (would love to see what you have) but if not I just started playing around with it. Feel free to use. Teams haven’t been selected so just creating a shell right now. Once they are announced I’ll be able to add Names/Logos/venue/etc.
Layout is my typical layout of everything on a single screen. Games are current but when MM starts you will see them there.
For those that want it - I have updated my github sensors, NCAA College dashboard and started to add a Women’s College Basketball - sensors only right now - for what I am showing below.
Here is the rough shell but you can see ESPN lays out the games through the Championship.
March Madness Men’s and Women’s selection was done today. Just a couple notes:
I tried to quickly make adjustments but I won’t be able to get back to this until next weekend. So any help or adjustments are appreciated.
I have updated my github for Men’s Basketball and Women’s BB. It’s rough right now but hopefully it will get cleand up.
I added an -odds section to the rest sensor because I was thinking about adding that in to the screen at some point. ESPN does provide Odds/Spread/etc…
I don’t like the formatting or the way sorting is done but I will work on that later.
Here are a couple screen shots. Can’t wait to see what you all add/fix/improve
Just tried to make a couple improvements and was working to see if I could create a bracket.
I am having alignment issues/sorting challenges with it, but I figured I would put the code out there if anyone wants it. I have only focused on the Men’s bracket but the basic decluttering template works for Women’s as well.
Here are some of the changes:
Reformatted the basic layout to show teams with Away over Home to better show the scores. Code is updated in the Sports_US_College_NCAA dashboard on GitHub. Here is an example showing the womens MM.
Created a separate sandbox for MM bracket building.
– To build the bracket I am keying off .notes.headline and filtering based on what it is saying. 1st Four/1st Round/2nd Round/Sweet 16/Elite 8/Final Four/Championship.
– I am using a template to filter. For those that know me, I would rather use REST but ESPN doesn’t break it out easily that way. To keep things clean I put this in a separate file in my GitHub site - under templates
– The Dashboard for the sandbox also has a separate file. I haven’t tabbed it yet but that is pretty straightforward to add.
– I need to do the same thing for Women’s MM but their brackets require different regions (which honestly doesn’t make sense) - Region 1/2/3/4 - so not a simple cut & paste.
– I don’t have TT in the sandbox - just became to cluttered.
– Before you ask - yes you can change the colors. It a variable that is called color. These colors just helped me lay the bracket out to see how it works. You can see the format here - just change it.
– Last point is that I have also add Game state at the top of each game in the sandbox - Games haven’t started today but you can see below the New Mexico Game Score is Final and Colorado State Starts tomorrow at 4:10 and the half/time will be reflected on the right as well as the current score. To get this I needed to update the scan interval - I picked 90 but you can adjust.
Hi there!
I’m new to this, I copied and pasted what in dashboard in github @kbrown01, standings for NHL, NFL, MLB and NBA work perfectly. But I don’t have any matchs in PRE, IN, POST tabs. May I forget to do something? Thanks in advance.
First thing to check is if you have the TeamTracker entities getting loaded. Go into Developer Tools → Template and put this in there - Is anything in result?
{% for team in integration_entities("teamtracker") %} {{team }} {%- endfor %}
Ok then it looks like there is something in the pre/in/post tabs config because everything seems to be working.
The flow is → it is called in the dashboard and then goes through the decluttering card ->game_stats and then appears. So look at your dashboard code and game_stats code.
You have NFL loaded which sometimes if you don’t it needs to have the red zone removed. But I would look there, maybe recopy kbrowns code in case something was missed accidently.