#Dynamic Sports Dashboard

1 messages · Page 1 of 1 (latest)

slow glade
#

I’ve set up my Home Assistant so that during F1 race week, my F1 dashboard automatically changes based on the current race status.

Right now it’s just for F1 and currently updating football from ESPN team tracker, but I’d love to expand it so the dashboard changes for different sports (e.g., football match days, qualifying sessions, etc.).

Any tips on the best way to make a multi-sport dynamic dashboard or a more dynamic and cool dashboard based on the live status of the event? Or examples of how you’ve done it?

worldly epoch
#

Have you seen the ha-team-tracker card? I'm not sure how it handles F1, but I set it up for hockey and NFL. I'm guessing you already have the team-tracker integration setup which is the hard part.

#

Perhaps you could do some conditional formatting to only show cards when they're in season. This is something I threw together a while back just as a proof-of-concept. ```yaml
type: custom:button-card
entity: sensor.team_tracker_blue_jackets
show_name: false
show_icon: false
show_state: true
state_display: |
[[[ if (entity.state != "NOT_FOUND")
return ${entity.attributes.team_name} - ${entity.attributes.team_score} &nbsp &nbsp ${entity.attributes.opponent_name} - ${entity.attributes.opponent_score}
else return "Not in season." ]]]

#

P.S. I don't even follow sports... 😆