wow smart, that would be handy for me, as I have a motorbike so knowing rain is on the way would come in handy, what weather integration do you use? would you mind posing the logic for the bars for a reference?
I’m not using any integration, I’m using straight the Accuweather API. They only allow 24 calls per day in its free plan for Minutecast, so I created three tokens so I can make a request every 20 mins.
I’m using NR to make the call but it can be done creating a rest sensor or command or whatever in HA itself. It’s a GET request and the url should look something like this:
Regarding those bars, I link you to a different post where I thoroughly exlained how it works. The config is shared in posts 16 and 17 but there’s the full explanation:
first of all, a huge thank you for this dashboard, it’s amazing! I’m learning a lot with it and I’m trying to make a notification center that turns on the tablet screen.
To do it, I rely on an automatization script, but I’m stuck on a detail: how can we open a popup in this automation script whose content is already in a yaml file identical to footer files etc…?
Automation script:
alias: Notifications onscreen
description: Système de notification onscreen basé sur l'event
trigger:
- platform: mqtt
topic: home/notif/onscreen
condition: []
action:
- service: switch.turn_on
data: {}
target:
entity_id: switch.galaxy_tab_a_screen
- service: browser_mod.navigate
data: !include popup/footer_popup.yaml
mode: single
the service you want to call is browser_mod.popup not browser_mod.navigate, you will need to pass the browser id, I don’t think you can pass in the full popup yaml to the automation, just copy and past the content section into the automation
I installed the dashboard about 2 days ago and I am really happy with the looks.
But currently I am struggling with some borders around cards in popups:
Hi all, quick question: the styling of my sidebar is not always applied (see pictures below). It looks like a random issue, sometimes it is loaded. Sometimes it is not. Looking in the CSS I notice that the car-mod is not loaded when the sidebar is not styled. So I suspect the card-mod?
I do load it in the recommended mode (configuration.yaml):
Anyone else facing this random loading of sidebar styling? Can anyone pinpoint me in the right direction, already tried a lot of thing without any success.
When i want to cast this dashboard to my nest hub mini i receive the message.
Set Theme to tablet in profile.
On my laptop everything is fine also try to set the theme default for all instances.
call service → Home Assistant Frontend: Set Theme
Set the dark theme from dropdown, to Dark
execute
perhaps some can help, its a little bit complicated but i try to explain, i have the standard light card with a extra card for my icon from my input_boolean.
When i now click the icon the light changes to ON and the boolean to ON.
the states are
Boolean = from OFF to ON
Light = from OFF to ON
or when i turn of the light
Boolean = from ON to OFF
Light = from ON to OFF
this here is the standard behaviour
than everything works fine, BUT when my Motion sensor triggers the light the boolean doesnt change the states are now for example
Boolean = OFF
Light = from OFF to ON
or
from ON to OFF
than the icon with the motion sensor still stands in the circle with the brightness.
my theory is that this happened because the state and card of the light changes from say ON to OFF but the second card with the icon remains unchanged since the boolean does not change its status
maybe someone of the pros here has an idea?
here is my card code