Version 1.07.21 seems to have introduced a bug (or at least an undesirable feature) where you can no longer click on the main entity image to get its more-info page. This code in 1.07.20 works fine:
But with 10.07.21 and later clicking on binary_sensor.house_occupied does nothing. Iâve tried adding a tap_action to it, and either I donât understand how to format the tap_action or it just plain doesnât work.
Can somebody explain to me how to show both the icon and state in info_entities? For example, for temperature, I want the thermometer icon, followed by the temperature.
I have been trying to figure this out on my own and reading through this whole thread and the wiki, but I havenât had any luck. I would like to get the hide_if function to work. I can get it to hide on simple states like âonâ or âoffâ but not when one sensorâs value is less than or equal to anotherâs value. Is it possible?
Sorry itâs nothing exciting, just a mqtt call to HASS.Agent (higly recommended if you wanna control your pc via HA) running on the target machine via a button I created in it, or a plain request to media.player to volume up, depending on conditions:
I suck at this HA stuff and Iâm always trolling the forums looking for someoneâs code to copy so I can complete a decent dashboard but always get stuck somewhere. Anyway I found someone who put this glow around their cards and I love it so thought I would share it.
If you want to change the colour from green to something else go to this site HTML colour picker and then you can âmakeâ and choose any colour you want, just change the #56DD3F value in the code. If i remember correctly you also need to install card-mod from HACS.
You can just paste the code at the very bottom of your card.
show off what you came up with too.
Hi,
I have a weird behaviour of this in regards of the displayed language of entity names/values - while the names are shown in german the state values are shown in the âlocalizedâ value (what I see as value of âlocalizedâ entry in the attribute of the entity itself).
In an entity card everything is displayed as german, so it looks an issue of the custom room card - can I choose what value is used to be displayed? Or does this need to be fixed in the code?
Is it possible that it happens due to the fact that this a custom integration using HACS that has its own directory for translations and this is ignored by the custom room card?
I think you need to use valid entity names and boolean operators in your if clauses. The best way to check to see if an entityâs state matches something is to use:
is_state('cover.toldo_estudio', 'open')
Also, open may be case sensitive (I donât use covers much, so I donât have an easy way to check). So it might be Open instead.