I have the same issue hereā¦
Ive done that multiple times.
From what I understand there something wrong with the config and resources, no icon at all is shown in the dashboard even though managed to get the weather working.
I really followed the guide step by step, there sure is something very basic, that the guide does not mention that I am missing.
in case it got overlooked
I did manage to get it work, but do to its re configured dashboard I get a lot of errors. I canāt get the weather icons appear at all, even when I start with blank dashboard. I did made the configuration references, but my knowledge is kind of limited, ill spend some time to read and start trial and error.
Post your code - The weather card was intended to ist a specific weather integration.
Which weather integration do you use?
Looks like youāre missing the font. If itās not loaded properly in your configuration.yaml (I had the same issue), go to Settings > Dashboards > 3 dots in top right corner > Resources > Add Resources and enter:
https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900
Choose Stylesheet and then restart Home Assistant.
Hope this helps
I have the same problems.
An empty dashboardā¦
And found this:
Logger: homeassistant.components.lovelace
Bron: components/lovelace/init.py:134
integratie: Dashboards (documentatie, problemen)
Eerst voorgekomen: 11:25:33 (1 gebeurtenissen)
Laatst gelogd: 11:25:33
Lovelace is running in storage mode. Define resources via user interface
Who can help me?
Please look into the last few posts, some fixes had already mentioned thereā¦
I think your theme is not active.
And HaCasa is designed, to be used in yaml mode⦠if you want to use it ui mode, you have to use some workarounds
Hi all,
love this theme. Made it work on an edge browser. But on my iphone, all the shades are not shown, colors are missing and the section headers show borders which they shouldnt.
Anyone has an idea?
You havenāt selected the theme in your profile settings
haha easy fix, thanks!
Iam feeling really dumb right nowā¦
How the hell do I edit the yaml code?! Where ist it?!
Right hand top side, the pencil.
Hi Everyone,
Iām excited to introduce you to the newest version of HaCasa or more like a total new project!
Itās been about a year since I introduced HaCasa to the community and didnāt expect this much interest! So many people joined our Discord server and there was a lot on conversation so thank you all for that!
Itās has been a bit quiet from my side, but a few months back I dived back in to take this new version to the next level. Every card has been build back from scratch, with more options, more customization and a overall better design. The theme also got some changes where a lot of bugs were fixed and some colors were added.
Whatās New in HaCasa?
- More Color: A refreshed palette that adds life to your dashboard while keeping it clean and modern.
- Sleeker Design: Simplified layouts and refined elements for a smoother, more intuitive experience.
- Reworked Features: Improved functionality and customization options to better suit your needs.
Iāve got some exciting ideas to make it even more user-friendly, and visually appealing - but I canāt do this alone. Great things are rarely built alone, so I need you. Whether youāre a designer, a developer, or just someone with a keen eye for detail, your help and input could make a huge difference.
You can find all the information in the starting message of this topic and again, thank you
Stay Smart
very nice! ready for installing via HACS? Or even no yaml dashboard but something with the new UI options ?
Just started really building proper dashboards, I love the look and simplicity of HaCasa.
Can anyone give me a hint on how to make the screen dashboard wider?
I am using the dashboard also on a desktop/panel PC and for that itās a bit wasted space - at least with the examples.
Hi there, very nice work! does this also work with the sections layout from HomeAssistant?
Hello @damiantje99,
Really great work again. If you need any assistance with anything please reach out. Iāve modified youāre previous templates greatly so I can absolutely help out. For example check out a few of my changes:
and currently changing the weather card to be able to show weather warnings ontop. For example I have bad allergies from pollen so its usefull for me to get a warning if I need to take medication.
Am I correct that in the new version there are no example views like you provided in the previous version?
kind regards,
Remco
Edit:
One thing we can maybe tackle from the beginning (correct me if there is already a way which I donāt know) is the fact that you donāt have to reboot homeassistant each time you change anything in the dashboard/views. Currently after each change in the code I reboot home assistant to see the effect. I donāt think thats very healty for my setup⦠But when I quick reload all yaml files via the developer tools, nothing updates.
Custom Cover Card
type: custom:button-card
styles:
grid:
- grid-template-areas: |
"n action_card"
"l action_card"
- grid-template-rows: min-content 1fr
card:
- overflow: hidden
- padding: 20px
- height: 150px
- pointer-events: none
label:
- justify-self: start
- align-self: start
- font-size: 1em
- font-weight: 500
- color: var(--contrast8)
img_cell:
- position: absolute
- top: 35%
- right: 38%
- overflow: visible
icon:
- position: absolute
- width: 30rem
- padding-bottom: 20px
- padding-left: 5px
- color: "[[[ return variables.color ]]]"
name:
- justify-self: start
- font-size: 1.2em
- font-weight: 600
state:
- value: closed
name: Closed
icon: mdi:garage-variant
- value: closing
name: Closing
icon: mdi:garage-open-variant
- value: open
name: Open
icon: mdi:garage-open-variant
styles:
icon:
- color: white
card:
- background: var(--orange)
name:
- color: white
label:
- color: white
- value: opening
name: Opening
icon: mdi:garage-open-variant
styles:
icon:
- color: white
card:
- background: var(--green)
name:
- color: white
label:
- color: white
custom_fields:
action_card:
card:
type: custom:button-card
styles:
grid:
- grid-template-areas: "\"item1\""
- row-gap: 10px
card:
- padding: 10px
- border-radius: 50px
- background-color: var(--contrast2)
- box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 0.1)
custom_fields:
item1:
card:
type: custom:button-card
entity: "[[[ return entity.entity_id ]]]"
show_name: false
show_state: false
icon: |
[[[
if (states['cover.smart_garage_door_2303137426866761070148e1e9bdb3ec_garage'].state === "open")
return "mdi:chevron-triple-down"
else if (states['cover.smart_garage_door_2303137426866761070148e1e9bdb3ec_garage'].state === "closing")
return "mdi:chevron-triple-down"
else if (states['cover.smart_garage_door_2303137426866761070148e1e9bdb3ec_garage'].state === "opening")
return "mdi:chevron-triple-up"
else (states['cover.smart_garage_door_2303137426866761070148e1e9bdb3ec_garage'].state === "closed")
return "mdi:chevron-triple-up"
]]]
styles:
icon:
- width: 2.5rem
- color: var(--contrast10)
card:
- padding: 10px
- border-radius: 500px
- box-shadow: none
- pointer-events: auto
- background: none
state:
- value: opening
styles:
icon:
- animation: blink 1.5s ease infinite
- value: closing
styles:
icon:
- animation: blink 1.5s ease infinite
tap_action:
action: toggle