Is a workaround to install it on the rpi 5 with developer HAOS? It seems to be stuck on āinitializingā
Hi every one, i have a little question.
Iām trying to make a maintenance view.
(I have an adaptive interface with the control pop-up)
I will not show this popup on the main view but I would like to display the information from my sensors in more than 3 columns.
I would like to know how to display 6 columns in my maintenance view.
I think i have to modify grid-template-columns:
Thx
Hi love what you did with your irrigation set up would you mine sharing the code for the custom card I would like to set up my irrigation the same way if not much to ask.
My apologies @tonydesigns85, but itās long time ago I am not using this card anymoreā¦ and the code isā¦ probably lostā¦ look in my posts and you will find an alternative approachā¦
Cheers,
Thank you for the quick responds I will take a look and see what I can come up with thank you again
Someone can suggest a template for an action button? @tben any nice idea ?
firts solved with card script layout , but the second no guessā¦
- type: "custom:button-card"
icon: "mdi:reload"
name: System restart
aspect_ratio: 4/1
tap_action:
action: call-service
service: homeassistant.restart
also this , results in a error , ig you have a template too.
- type: "custom:button-card"
template: card_generic
entity: sensor.uptime
this works but is not following the normal template layout
thanks
hi folks, trying to implement the Welcome Scenes Card, but getting frustrated that doc donāt clearly show an example of how to actually use scenes with this card. This is what I have that isnāt workingā¦
- type: "custom:button-card"
template: "card_welcome_scenes"
#triggers_update: input_boolean.<Your_boolean>
#entity: input_boolean.<Your_boolean>
variables:
# ulm_card_welcome_scenes_collapse: input_boolean.<Your_boolean> #OPTIONAl --> uncomment also entity or triggers_update
# ulm_weather: "weather.YOUR_WEATHERPROVIDER"
entity_1:
entity_id: "scene.tv_time"
icon: "mdi:television"
name: "TV"
color: "blue"
tap_action:
action: call-service
service: scene.turn_on
Where am I going wrong?
Anyone else having an issue with the bar card starting in the middle of the card? Iām not sure when it started, I havenāt looked at this particular screen in a while so canāt say what update may have caused it. How can I fix it?
Hi All,
Iām trying to use the button-card minimalist but I have some issues the custom_card ācard_input_datetimeā
I installed correctly all the custom cards under the directory config/ui_lovelace_minimalist/custom_cards. If I put this code under the file ui-lovelace.yaml (dashboard that can be configured only with yaml code, installed by the lovelace integration) it works correctly:
- type: "custom:button-card"
template: card_input_datetime
entity: input_datetime.hvac_bagno_grande_timer
variables:
ulm_card_input_datetime_name: "TestBagnoGrande"
But if I edit of my dashboards, which is editable through the UI Dashboard, I choose the button-card and write this code:
type: custom:button-card
template: card_input_datetime
entity: input_datetime.hvac_bagno_grande_timer
variables:
ulm_card_input_datetime_name: TestBagnoGrande
I have the error:
Button-card template ācard_input_datetimeā is missing!
I donāt understand why this happens. If I donāt use the ātemplateā attribute, the custom:button-card
works, like this code here:
type: custom:button-card
name: Studio
entity: light.studio
styles:
icon:
- width: 24px
name:
- font-size: 10px
Can someone help me please? thanks!
Maybe someone knows a solution. I couldnāt figure it out. Tried searching here and Google.
I want to change the label to something like āMovementā when a motion sensor detects movement and the label be āNo movementā when the motion sensor doesnāt detect motion. But I can not figure out how to get this to work. This is the code:
- type: horizontal-stack
cards:
- type: "custom:button-card"
template:
- card_esh_room
- green_on
name: Toilet
entity: light.hue_room_toilet
icon: mdi:toilet
tap_action:
action: navigate
navigation_path: "toilet"
variables:
ulm_custom_card_esh_room_light_entity: light.hue_room_toilet
ulm_card_dynamic_color: true
label: Display Movement when binary_sensor.toilet_sensor_motion detects movement otherwise display No movement
SOLUTION
Found it myself just now
label: >
[[[
if (states["binary_sensor.toilet_sensor_motion"].state == "off")
{ return 'No movement'}
else
{ return 'There is movement' }
]]]
Hi,
Got an issue with my code but canāt solve itā¦
title:"Home"
path:"home"
cards:
- type: 'custom:button-card'
template: card_title
name: My Title
label: 'Subtitle'
the error says āend of stream or a document separator is expectedā highlighting the : after the cards
Yes, I had this problem with bars starting in the middle (and other styling errors) for custom cards I made a while ago. The problem was with card mod deprecating the old notation. where you have:
style:
(which is not under card_mod:) it should say:
card_mod:
style:
One thing that pops out is that there should be a space after : for name and path.
Thank you, problem solved!
Hi all,
I have assembled my dashboard with UI Minimalist, following Lewisā (Everything Smart Home) great Youtube video and mostly I got it working and looking the way I want.
The only thing I canāt seem to figure out is how to use the āpillsā in his welcome card for navigation.
Ideall those 5 icons should take me to yet another page, e.g. one with all the lights in the house and so on:
In the code there is also a ānavā option and I have entered the name of a yaml file I have created in the ui-lovelace-minimalist folder, e.g. light.yaml.
But the navigation does not work.
It does work when I include another view in the ui-lovelace.yaml file but this also means that another name or symbol appears in the top menu bar, which I donāt really want:
Is there a way to make the navigation work without having additional icons in the top menu? I would like to reserve those for the rooms only.
Thanks and regards,
Merc
EDIT:
Okā¦found it.
Had to add a
visible: false
to the top of the yaml.
Where can I get the ācustom_card_generic_dual_entityā ?
Someone knows how to have an āactiveā icon for sensors ?
Thanks
Still the same issue. The error is around the cards:
I am also getting the text for the light status.
My custom door icon and color are recognized though and I have added the door to the translation file.
What is missing to make it pick up the correct text?
If you are still experiencing this, change the theme for your interface to be one of the minimalist themes that are added with the integration.