*** Admin feel free to delete if duplicate thread ***
I’m always interested in improving the UI of my HA, and take plenty of ideas from the community on various threads, but haven’t seen one place for people to show off their amazing dashboard work! So thought I would start something
Rather than showing off specific elements, buttons etc, thought it would be good for people to share their entire screens/dashboards. I’ll go first to get the ball rolling, still work in progress on these though!
i See we use a few cards in common: but here you go - really a long way for this to be like that - but im kinda proud of it=) I will not show all different areas but my favorite ones=)
A few steps to create the greeting (stole it from someone else here of course!):
Create an Input Select:
frontend_greeting:
name: Frontend Greeting
options:
- Good Morning
- Good Afternoon
- Good Evening
- Good Night
Create automations to set the state at different times. This checks every 5mins and updates, you could probably set it to trigger at the specific times to save CPU though:
- alias: Frontend Greeting
trigger:
- platform: time_pattern
minutes: /5
- platform: homeassistant
event: start
action:
service: input_select.select_option
data_template:
entity_id: input_select.frontend_greeting
option: "{% if (states.sensor.time.state > '22:00') and (states.sensor.time.state\
\ < '06:00') %}\n Good Night\n{% elif (states.sensor.time.state > '06:00')\
\ and (states.sensor.time.state < '12:00') %}\n Good Morning\n{% elif (states.sensor.time.state\
\ > '12:00') and (states.sensor.time.state < '18:00') %}\n Good Afternoon\n\
{% elif (states.sensor.time.state > '18:00') and (states.sensor.time.state\
\ < '21:59') %}\n Good Evening\n{% endif %}\n"
Hey Pedolsky, i used the Feedparser with a rss for live tv - mine is texxas, its not the best but a few channels work…
after getting the list i then feed everything in a markdown card where i had to manually add the logos
Great work man. I am interested in the code for your tracking of you and your wife. I am trying to accomplish something like that myself. Thanks ahead of time
Just a range of different custom button cards with custom fields depending on my needs eg. temperature only, temperature + colour code for certain appliances/devices.
I use popup cards through card-mod to show everything within that room.