#frontend-archived

1 messages · Page 14 of 1

vast crane
#

Sounds like you're adding scripts to like an entities card? You could create a grid of buttons, and each button when tapped can call service to run the script, that should give you more visual customization.

limpid carbon
drowsy void
#

Is this a frontend issue or a “Helper” bug? Also, where would I report it?

When I put a timer from the “helper” into the Lovelace, sometimes it says “Active” sometimes it gives the duration of how long there is left; how can I make it so it always shows the duration?

#

I have created an automation within Node Red that triggers the timer helper to start counting, and I need to see the duration on the Lovelace as it counts down.
Sometimes when it triggers it shows and sometimes it just says “active”, there is no option to toggle from duration to active or visa versa.

runic rune
#

Hey! Should there be any options for unit when I open the settings for my standard MET weather sensor? There are no options there.

gilded vine
#

Stream Deck integration: My Denon AVR has a entity volume_mute, but I can't figure out how to get it to working in there. I think I need to work with Service data, but I don't know what to add there.

I've got the Stream Deck Home Assistant plugin installed and setup so that I can for example, turn off the light and see entity value. But I have no idea how to get that volume_mute to work.

honest moon
#

is there a way to show line graph history as vertical bars instead?

#

like, quantized by minute or something?

#

this is for numerical data

#

i'd rather see this as vertical lines, not jagged slopes

vast crane
#

A statistics graph card can do that

honest moon
#

but is that real time?

#

with a window of 1hr?

vast crane
#

I think it can do 5 minute intervals

honest moon
#

hmm. i'd prefer 1 minute but let me check it out.

zenith hornet
#

anyone know where to get an RGB Lightstripe colour light object for sweet home 3D ? like this:

elfin aurora
#

hi, got a strange fault. My layout-card, set to "grid" doesent work right: the vertical stack dosent match the heights of the other cards. How to set it to the same level?

zenith hornet
#

btw, nice dashboard 🙂

#

typtical deutsch, alles schön geordnet 😄

elfin aurora
#

🙂

deep cairn
#

Anybody have a nice weather dashboard they want to share?
I just setup openweathermap integration and am, working on a dashboard.

#

second question: is there a way to make a double wide card?

unkempt kernel
deep cairn
#

nice. Did you just do a webpage card for the map?

honest moon
#

they are "greyed" out

deep cairn
#

maybe that means that measurement isn't available for the chosen entity?

honest moon
#

the state is literally watts. numerical.

#

not sure what it wants

unkempt kernel
#

anyone here know layout-card ?

#

having issues

#

i want to move the "fireplace" button to the right of thermostat card

golden mistBOT
#

@unkempt kernel I converted your message into a file since it's above 15 lines :+1:

unkempt kernel
#

trying to make it look like this

chrome river
#

would have been more appropriate with the whole card-code, and grid-template-columns: auto 30px 25% , doesn't seems right with 2 columns

haughty vine
#

(ignore last 2 lines)

unkempt kernel
#

umm... that wont work.
A through E are a horizontal stack of mushroom-template-cards.
I only want to edit the line wiht F &G

haughty vine
#

do you need a stack ?
with grid layout u can often create flat layout without going deep with those stacks

#

anyway you can just use last 2 cards

#

but it might be harder to pixel-perfect align with existing cards

unkempt kernel
#

layout card needs better documentation

haughty vine
#

I did not add it in the example, but layout-card when stacked needs often needs margins removed to align visually well
when it's a card, not main layout

unkempt kernel
#

ive been reading it all weekend.

#

need more examples

polar kelp
#

That link is for fixing it.

unkempt kernel
#

i noticed it was an edit link.
i dont think the person asking for help is the best person to add examples

haughty vine
#

it would be nice to modify cards spacing using only grid-gap: param

unkempt kernel
haughty vine
#

try toggling fill container option on Fireplace card

unkempt kernel
#

fixed fireplace first by removing decimal

#

now the opposite

#

trying to set height for thermostat card via layout-card options

#
  • type: custom:simple-thermostat
    entity: climate.thermostat
    header: false
    decimals: false
    layout:
    step: row
    control: false
    view_layout:
    grid-column: auto / span 4
    layout:
    height: 300
haughty vine
#

the thermostat card shrunk a bit? ok i did not expected this

#

that thing you just posted isn't a valid yaml

unkempt kernel
#

when i removed the decimal on temp, it moved the MINUS button back to normal place

haughty vine
#

it has 2x layout: param

unkempt kernel
#

??

#

thermostat : show header
fireplace : fill container

#

this works.
thermostat is a bit chunky, but it works

chrome river
#

you didn't had to add title, on the themostat, just use padding

unkempt kernel
#

would love an example

haughty vine
unkempt kernel
#

not perfect

haughty vine
#

If u have card_mod installed just add to the card:

card_mod:
  style: |
    ha-card { height: 100% }
unkempt kernel
#

it 'verks!!!!

haughty vine
# unkempt kernel

finally add the negative margin around layout card

layout:
  grid-template-columns: repeat(5, 1fr)
  margin: '-4px -4px -8px' # not perfect solution, but should work

..to align it with the rest of your layout

unkempt kernel
#

my next annoyance...
template card : icon color
if i use the "light color" to set icon color, the background circle vanishes

icon_color: >-
  {% if is_state('light.living_room_lights', 'on') %}

  {{ state_attr("light.living_room_lights", "rgb_color")[0] }} {{
  state_attr("light.living_room_lights", "rgb_color")[1] }} {{
  state_attr("light.living_room_lights", "rgb_color")[2] }}

  {% endif %} 
#

where

icon_color: >-
  {% if is_state('light.living_room_lights', 'on') %}

  orange

  {% endif %} 

results in this

#

only 4 of 15 rooms have color lights, so it gets inconsistant if there is a circle or not

haughty vine
#

probably because the color values needs to be separated by comma

#

anyway I'm gonna head out to eat something, good luck 😉

unkempt kernel
#

tried adding commas

{% if is_state('light.living_room_lights', 'on') %}
{{ state_attr("light.living_room_lights", "rgb_color")[0] }}, {{ state_attr("light.living_room_lights", "rgb_color")[1] }}, {{ state_attr("light.living_room_lights", "rgb_color")[2] }}
{% endif %} 

color goes away

teal scarab
#

Question. I was adding a sidebar card to one of my dashboards. I was pasting the code and accidentally included "hidetopmenu". As a result, I can't access the edit button. How can I access the code again to remove this line?

unkempt kernel
#

removed the commas...
now it works

#

WTF?

#

ok...
removing 1 comma fixes

#

lol

#
{% if is_state('light.living_room_lights', 'on') %}
{{ state_attr("light.living_room_lights", "rgb_color")[0] }} {{ state_attr("light.living_room_lights", "rgb_color")[1] }}, {{ state_attr("light.living_room_lights", "rgb_color")[2] }}
{% endif %}
haughty vine
#

oh, ik what's wrong just dunno how to fix it 😉

unkempt kernel
haughty vine
#

the value from template is converted into array for some reason

unkempt kernel
#

rgb 0 NO-COMMA rgb 1 COMMA rgb 2
worked

sonic rapids
#

o.o

chrome river
unkempt kernel
haughty vine
unkempt kernel
#

but where? lol, stacks upon stacks of nested cards/addons

haughty vine
#

the problem is the automatic value conversion in backend templates

icon_color: 250, 0, 0 # this is red color (in Mushroom card)

vs

icon_color: |
  {{ "250, 0, 0" }} # no longer a color, because it was returned as array of value not string
deep cairn
#

so... I see people putting templates into dashbaord cards... how do I do this?

#

I want a card that outputs a string based on a sensor value...

{% if is_state('sensor.openweathermap_uv_index', "unavailable") -%}
    UV Index is unavailable.
  {% elif states('sensor.openweathermap_uv_index') | int >= 5 -%}
    The UV Index is high, wear sunscreen!
  {%- else -%}
    Use your judgement.
  {%- endif %}

But I have no idea how to add this to the dashboard

unkempt kernel
golden mistBOT
#

@unkempt kernel I converted your message into a file since it's above 15 lines :+1:

deep cairn
#

nailed it!

#

Thanks!

unkempt kernel
#
type: conditional
conditions:
  - entity: vacuum.bitch_vac
    state_not: docked
card:
  type: custom:vacuum-card
  entity: vacuum.bitch_vac
  map: camera.bitch_vac_cleaning_map
#

only shows card if bitchvac is not docked

#
type: conditional
conditions:
  - entity: alarm_control_panel.system
    state: triggered
card:
  type: alarm-panel
  states:
    - arm_home
    - arm_away
  entity: alarm_control_panel.system

show alarm panel when armed

#

you can wrap your UV-tempate card in a condition, so it only shows when above a threashold

deep cairn
#

nice vacuum name... lol

unkempt kernel
#

i laughed my ass off when google said it back to me that first day

#

starting bitchvac

graceful pebble
#

Template Sensor for low Batteries

deep cairn
#

Thanks for all the tips everyone. My weather dash (as of now)... I'll be playing around with the mushroom cards now.

unkempt kernel
#

windy is nice, eh?

deep cairn
#

yeah, I like the view it gives, although, interacting with it seems... sketchy - as in... doesn't navigate as I'd expect

unkempt kernel
#

yeah not designed for this,,, but great site

deep cairn
#

agreed. 🙂 Thanks!

golden mistBOT
#

@sick lichen I converted your message into a file since it's above 15 lines :+1:

sick lichen
#

Hello all...
I want to display the values of two sensors side by side in my picture elements card
in the moment I am doing this by using two state-label`s with different "left" position
is there any possibility to do this with one state label?

    entity: sensor.solar_ac_leistung
    style:
      top: 1.4%
      left: 29%
  - type: state-label
    entity: sensor.zaehler_og_leist_og
    style:
      top: 1.4%
      left: 70%```
mental wren
#

Hello, how can i change the radius of the “home” zone if the name of the zone has been changed?

deep cairn
#

To all those who helped me with my dashboard questions earlier... this is where I landed using mushroom cards and templates... I like it a lot. Thanks!

faint rampart
#

title: Home
icon: mdi:home
path: home
type: custom:dwains-dashboard-layout
cards:

  • type: custom:homepage-card
#

what am I doing wrong, i'm trying to setup dwain's dashboard

vapid field
#

Hey 🙂 Can you please help me on how to install custom lovelace card? I'm all stupid now 😉 Trying to install this: https://github.com/Yevgenium/weather-chart-card - I've installed it via HACS but doesnt work. I still get a message that "custom element does not exist: weather-card-chart" 😦 Any idea?
the thing is that I had this running but stated to have issues with it and wanted to reinstall. Now its all f..up 🙂

karmic tendon
#

Have you read the page? Where does it say to install via HACS?

polar kelp
#

Is that the exact error message you're getting?

#

If so, try type: custom:weather-chard-card instead of type: custom:weather-card-chart.

frigid tendon
#

Question, in particular about Input Number, back in 2022 we were able to switch between sliders and box in the frontend and we also had the ability to set the initial and steps.
Why was this removed from the frontend and is this something that will be coming back?
I find it extremely tedious to having to add the different types in configuration.yaml, when it was possible to do in the frontend before.

chrome river
frigid tendon
#

hm, yeah

#

I only see this

polar kelp
#

Ah. I see. Go to your profile settings (bottom left) and enable Advanced Mode.

frigid tendon
#

Thanks, I had it enabled before, it must have been disabled at some point 🤦

#

I now see it as it should be 😅

#

Thanks again

vapid field
fiery ledge
#

suddenly notice device_trackers listed with their name doubled:

#

even though the device is named only once.... anyone seeing that too?

stone sentinel
#

Hi not sure if I'm in the right channel, new on Home Assistant so any help would really be really appreciated.
I have a water heater that I can turn on and off in the Home Assistant UI. If I want to make a graph in the UI that shows 1 or 0 depending on when the water heater is on and off, how can I do that ?
My first thought is using the log book since it records when the water heater is on and off but I'm not sure how to read informations from the log book to a graph...
If a graph is too difficult, something that simply shows when the water heater is on and off would be nice

golden mistBOT
#

@proven nest I converted your message into a file since it's above 15 lines :+1:

agile quiver
shut robin
#

hey guys, i'm struggling with using the mini media player and card mod - i just cannot get my head around how card mod is meant to work and how to navigate it

i'm trying to make these icons bigger so they're easier to press on my phone

this is all i've got for my card mod so far, which is making the height good, but i can't figure out the final step to make it also increase the icon size

  style:
    mmp-shortcuts:
      $: |
        mmp-button {
          height: 90px;
        }```

if anyone could help, that'd be appreciated!
#

i did find where it needs to go (see picture) but i can't for the life of me figure out how to tell card mod where it lives

chrome river
proven nest
chrome river
#

What ?, you want 3 lines per entity ?

proven nest
#

I only have 1x entity which displays all the battery status' under a certain value. I would like a status per line.

chrome river
#

1 entity (2 lines ... Name | Value) <> per | 1 row | , unless you want both entity-name and value on same line ... what is "per line" in your "view" ?

proven nest
#

As you can see ideally I would like each battery level item to be in a list like it is in this conditional card

chrome river
#

ok, yes seems like you need a vertical-stack, or whatever card with that structure ( maybe entities-card ), or battery-state.card ( with exclude etc. ...NOT a "Horizontal" banner-card, with Rows(columns), or flex-table-card ( if you have 1 "template-sensor" with all the entities ) you have to think what you actually can use for type of card

vast crane
#

if you have an entity that already has the list, maybe markdown card

proven nest
#

I have a Markdown Card that lists the batteries in a nice list as per the second image but it's less colourful. I'll have to experiment with formatting in the markdown 'content' box.

chrome river
#

As TimO mention, you have apparently 1 sensor you want to use for this purpose, which limits you, OR make life more complicated, Most likely are all these sensor/values attributes, so you could also use templating to place them in more optional cards, picky work, autoe-entities an conditional cards you can also make as colorful as you like with card-mod ( i don't know your reasons, but i would ditch that sensor"

vast crane
#

I thought MD had some color options

chrome river
# vast crane

Right, it's html/templating, which implies CCS 🙂

mellow lichen
#

Does anyone know how I can enable the default popups (Like this screenshot) to appear on hold of a custom:button-card card?

dark dirge
#

presumably this, from the docs:

mellow lichen
#

Yeah I know that much, however I am unsure about what should be inside that action

dark dirge
mellow lichen
#

Well yes, but what there will make that standard popup appear?

dark dirge
#
    hold_action:
      action: more-info
#

this is one of the examples in the docs:

- type: 'custom:button-card'
  entity: light.living_room_lights
  icon: mdi:sofa
  color: auto
  tap_action:
    action: more-info
#

you want hold_action:

mellow lichen
#

oh yeah that works. Thank you!

polar kelp
#

Well... that's kind of neat... ```yaml
type: gauge
entity: sensor.0x00178801086c6fed_battery
segments:

  • from: 0
    color: var(--gauge-gradient)
    needle: true
    card_mod:
    style: >
    :host { --gauge-gradient: url("data:image/svg+xml,%3Csvg
    xmlns='http://www.w3.org/2000/svg' width='100'
    height='100'%3E%3Cdefs%3E%3ClinearGradient id='linear' x1='0%25' y1='0%25'
    x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='red'/%3E%3Cstop
    offset='50%25' stop-color='yellow'/%3E%3Cstop offset='100%25'
    stop-color='green'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E#linear"); }```
agile quiver
polar kelp
#

The bar of the gauge card is an SVG line which doesn't accept CSS gradients as a stroke color.

agile quiver
#

Ah.

drifting canyon
#

How do you handle sensors that use a battery that reports voltage instead of percentage? I'd like to convert it to a percentage somehow.

haughty vine
tidal dirge
#

possibly a simple question, possibly not, but is there a way to have a history graph card show a time period like "today", vs. "last 24 hours" -- i.e., show 1 hour at 1am, 2 hours at 2am, 8 hours at 8am, 12 at noon, so on?

#

I suspect I could do something batty like have 24 conditional cards in a row but that seems... non-ideal, obviously

stark dagger
tribal galleon
golden mistBOT
#

@tribal galleon I converted your message into a file since it's above 15 lines :+1:

runic blaze
#

Hi 👋 I have a dashboard and would like to share only the dashboard (no navigation menu etc.) with readonly access to a few people - preferably without creating an user account for them. How can this be achieved?

opal geyser
#

there is a kiosk mode addon for hacs, but you need at least a normal user account for that

runic blaze
drifting canyon
haughty vine
#

Otherwise creating entity yourself is always an option
(albeit pain in the butt especially to calibrate % formula to scale somewhat linear)

drifting canyon
#

Why would a mini graph card show up on my desktop but when viewed on my phone app, it says "custom element doesn't exist: mini-graph-card

haughty vine
#

without connecting devtools console to it - it's up to speculation

#

but it's always worth to try force close + clear app cache

#

not guaranteed to solve anything but it's fast 😉

elfin yarrow
#

Has anybody come up with a 5-speed fan lovelace card?

empty cipher
#

Hey folks! I've got a 'statistics graph card' on my dashboard. It's configured to show 1 day only, but it's showing WAY more than that. Is this a bug in HASS or am I misunderstanding something?

frosty flower
#

hey, im trying to make an auto entity card based on the state of an input select, but as soon as I add the template it just stops functioning how i expected

golden mistBOT
#

@frosty flower I converted your message into a file since it's above 15 lines :+1:

frosty flower
#

and th e problematic line in question:

    {{this.entity_id in area_entities(states('input_select.rooms'))}}
agile quiver
frosty flower
inland hearth
#

Anyone know if we can get the old card back for RGBW bulbs? The new setup with brightness, color, and color temp all on different "pages" is certainly prettier, but much slower to use. I've been looking through the settings and can't find anything.

vital burrow
#

Are button cards broken? I used one to show the charge sensor of a UPS. But as soon as i add the status (percentage), the button disappears.

dark dirge
#

Custom button cards?

vital burrow
#

No, regular buttons

#

The first one is without status toggled on, the second one with it toogled on (which used to show the percentage below).

vast crane
# empty cipher Hey folks! I've got a 'statistics graph card' on my dashboard. It's configured t...

I've seen this issue reported before, it shows up if your sensor is unavailable at the start time of the graph, it includes the most recent available time before the sensor went unavailable, even if it was months ago.
It should resolve itself once a day elapses.
I've tried to convince some core devs that it is unwanted behavior, but have not been successful yet:
https://github.com/home-assistant/core/issues/88757

worldly saffron
#

Hi All, I'm new to the discord channel (and relatively new to HA - 3 months in but loving it!). Would this be the right place/channel to ask about a lovelace challenge that I can't figure out for one of my dashboards?

agile quiver
#

Shoot (says I who's just about to go to bed, so pardon me if I'm rude and not responding for a good long while 🙂

mellow lichen
#

So am I the only one who is experiencing that none of my custom-cards work after the new release? (All of them are updated)

worldly saffron
#

Hey Kris, sorry just saw the reply, many thanks - don't worry if it's too late but I can't seem to get the customer state switch card working using the device ID from browser mod.

#

I know that I'm using the deviceid that HA recognises as I add this too a dashboard and it returned my device ID in the bottom corner:

type: custom:browser-player
entity_id: media_player.your_media_player
deviceID: your_device_id

but when using this custom state swicth I get nothing:

jolly shell
#

Is '/kiosk?' not working for everyone else or is it just me on the new update?

worldly saffron
#

type: custom:state-switch
entity: deviceID
default: all
states:
50dcfa90-7ad1d87b:
type: light
entity: light.bedroom_3_lights
name: Name
hold_action:
action: toggle
double_tap_action:
action: more-info

#

Some of the docs / previous FAQ make a reference of adding the device by an entity in the configuration file but I think that's out of date as it's no longer reference in the latest docs and there seems to now be a UI interface to add devices..

haughty vine
#

Make sure it's updated and not old cached version is served
(check dev console - most custom cards/frontend custom modules will print their own version when reloading)

jolly shell
haughty vine
haughty vine
# mellow lichen How do you reset this?

Usually HACS is doing it while updating. Both updates the actual files on disk and alters Resources urls
(by changing hacsparam= in url, to force HA update it's caching mechanism)

mellow lichen
#

Well. In my chrome browser button-card is still version 3.4.2. However my firefox says 3.5.0. By hacsparam= do you mean this?

haughty vine
#

yes, this should be changing automatically when card is updated

mellow lichen
#

I don't know if it did do that. But I just tried changing it, and refreshing my chrome browser. It still says 3.4.2...

jolly shell
frosty flower
#

I noticed the new tile card in ha looks a lot like the mushroom cards. Is there any really difference? Mushroom cards still have more customizability right

shut robin
#

hey guys, i've been banging my head against a wall for a few hours now trying to get this to work - maybe someone else has fresher eyes than me! i have a dashboard that i'm using layout card (with grid mode) on and trying to get the icons centered in the view here

i think the solution to it is putting justify-content: center into this somewhere (based on playing around in the inspect menu) but i'm not fluent with css and card_mod and layout_card and whatnot and nothing i'm doing is working! if anyone has any ideas, that would be greatly appreciated!

EDIT: for anyone trying to find the answer to this later, i found the solution - it's not justify-content: center, it's place-content: center, and i put it in my layout options section of my layout-card (grid) (the section you get when you click edit on the grid part while in visual editor)

half pawn
#

How do I use the new cover features made available in core 2023.4.0? I have 6 curtains with position control and like one of the new display options in the release notes. Now I just have to figure out how to get to this.

#

I tried adding the cover as an entity card but this has none of the features shown above. Is this a new card option? I can't seem to find it in the existing cards

golden mistBOT
#

@half pawn I converted your message into a file since it's above 15 lines :+1:

half pawn
#

It creates this, but I like the new cover option beter

foggy viper
#

Hi, so I got the polymer warning in the logs. How do I find out which frontend cc is using polymer?

white turret
#

so uh, life hack

#

if you're like me and you have a smart garage door setup with a shelly relay and a reed switch

#

you probably have two entities in home assistant for that unless you discovered a better way to expose a cover to home assistant

#

a while ago i was trying to find a way to conditionally display an icon and i ended up using card-mod for it

#

but it turns out there's an easier better way

#

make sure your binary sensor is displayed as a garage door (you may need to modify the logic of your sensor for the open and closed to match)

#

then just add a normal button and change the tap action to a service and make that service a button press

#

can't believe i only just now realized this

fallen badge
#

Not sure what’s causing it but since the latest update I can’t swipe the side menu to appear on the iOS app. I don’t have any swipe navigation integrations, I changed to the default theme and made sure browse mod did not have any settings. Also cleared app data. Anyone have the same issue?

dark dirge
#

Update the iOS app

#

Pretend like this version is 2023.4, it's been a busy month of March for me!

  • Works around iOS 16.4/16.5 issue where attachments in local notifications do not work. Notifications will be delayed when this occurs, but they will end up being delivered over APNS instead.
  • Adds app support for opening the sidebar with a gesture in core-2023.4 beta 3 or later. In core/frontend, the gesture was removed; this reintroduces a basic one to open it and in the future will be refined to be more interactive.
#

It may just be a TestFlight/beta version now

fallen badge
#

Ah, I see there is a update to the app for this 🤩

fierce iris
#

Is there any solution for themes? Since the new Update all themes are Not working for me. Does anybody else have that ?

simple marsh
#

hi all any solution for kiosk mode broken?

lunar portal
#

Hey !
My wife have an issue with the iOS app. It keep disconnecting her and she have to re-add the password multiple times a day.
Can someone point me to a solution or a reason behind this ?

haughty vine
frosty flower
#

um are hex colors not working for the tile card?

this card gives me no color when i enter a hex value

#
entity: this.entity_id
name: null
content_info: name
use_entity_picture: true
layout: vertical
features:
  - type: light-brightness
color: ffa657
card_mod:
  style: |
    ha-card {
      margin-bottom: 0px;
    }
#

just looks like this

#

color tokens work fine

tribal palm
#

hi mates, how can i put this attribute's value in lovelace? separate card, card's title or other doesn't matter.

{{ state_attr('sensor.termometro_status', 'IPAddress') }}
spiral vale
#

is it possible to get the streams from a Hikvision NVR on the home assistant dashoard? Also is their some card that when pressed in the camera feed that would make that feed large/full screen

haughty vine
#

I want to organize entity rows into css grid (using card-mod obviously).
I have assigned a class to individual rows.
The problem is with Entities Card wraps each row in a <div> element preventing me from
efficiently targeting them using selectors (other by "nth-child") and e.g. assigning them to grid areas.
Is there some trick to assign each row a css grid area?

shut robin
#

hey guys, i'm working on the next step of my dashboard - a tv remote

i want something that has the ability to pause/play, turn then tv on/off, adjust the volume (probably with buttons - my tv isn't working with volume_set for some weird reason) and have customisable app pictures to use (netflix, youtube, plex etc)

does anyone have any examples of something that they use on their dashboard that might fit the bill? i'm struggling to find something on hacs that does everything and looks nice, but wouldn't mind making something if it exists out there

limber mist
#

So I really like the tile cards and have been augmenting them with some mushroom cards, but is there any way to group them with a title better? I tried the mushroom title but those are massive

cobalt trench
#

On an Entities card, is it possible to make a 'select' entity read only? So it appears like a 'sensor' entity with the label and value, rather than a dropdown?

haughty vine
foggy viper
#

Hi, how do you know if your frontend integration uses polymer? thanks

haughty vine
#

HA frontend no longer does. Some old custom cards might.

#

I guess searching their source code is the only way

#

(especially deps from package.json)

foggy viper
#

any of these use polymer? 🙂

haughty vine
#

¯_(ツ)_/¯
why, (as non-developer) care? If they do they are likely having it embeded with their module.
only few cards were depending on extracting it from frontend
(Idk but i guess that's why they got broken)

foggy viper
#

well, this why I asked:

Source: components/system_log/__init__.py:257
First occurred: April 5, 2023 at 9:50:16 PM (5 occurrences)
Last logged: April 5, 2023 at 9:51:05 PM

WARNING: Polymer will be removed from window in Home Assistant 2023.5. More info: https://developers.home-assistant.io/blog/2023/04/04/deprecating_polymer
haughty vine
#

fair, there is at least one that uses old way
it's still a headache for developer

#

searching for "window.polymer" in the code might give out some results

foggy viper
#

awesome even I can do that. thanks

haughty vine
#

but e.g. Mushroom card is the only one swohing in results but it doesn't spawn the warning for me

#

and it works even on latest release

foggy viper
#

really, mushroom uses polymer? that a pretty famous CC

haughty vine
#

so maybe it's not that easy to single them
anyway it should only apply to cards that uses the framework but does not emebed it (expecting HA to provide it)

foggy viper
#

hopefully they'll update it by 2023.5

haughty vine
#

probably a false flag since it works ok with this release

#

anyway gotta go, afk

sick lake
#

In the states tab of developer tools on a narrow screen (e.g. phone), is there any way to force the entity attributes to be shown?

vast crane
faint rampart
#

other than Fully Kiosk Browser app on Android, can someone refer me to a addon/hacs that can mimic the same results with using the camera as a wake the tablet screen.

tribal galleon
faint rampart
#

I have samsung android tablets

tribal galleon
#

Found references to a Wall Panel app. https://www.facebook.com/groups/2091834914421201/posts/2946512378953446/?paipv=0&eav=AfYLVCcBd6TzPXcTOcx2lf_pwdInOmkrC3tkk3A2quRPXJj3RXTOCJDt0ndZE1RbfCs&_rdr
The Wall Panel app uses the camera as a motion sensor that can wake up the tablet when you walk towards it.
Someone else mentioned
I use a combination of HA + Tasker + AutoRemote. Gives complete control over your device. That way I can turn my tablet off whenever I'm not home or asleep and turn it on as soon as I walk into the room.

faint rampart
#

the tasker approach seems a bit much

#

I just want to use HA and any addon that can hide side/top bar since this will be mainly a community tablet that will be on the hallway towards the front door.

haughty vine
#

Normally row type is automatically assigned based on entity type

vast crane
#

That's helpful, thanks. Maybe I'll try to PR that for a documentation update.

haughty vine
#

most special rows are bound to work with selected entity types only.

vast crane
#

I think I've seen that question once or twice before how to make "read only" values in entities, and not have the selector.

cobalt trench
#

Trying the type: simple-entity thing on a different entity and ran into a little hiccup. It renders fine but I'd obviously like to fix the YAML so the visual editor is happy. The value is a time in the format HH:MM:SS.

Any recommendations on HA YAML tutorials greatly appreciated.

vast crane
#

you can't fix it. it's not supported for the visual editor

cobalt trench
#

Ah, ok. Thank you. The visual editor was happy until I added the type: simple-entity. Is it an issue with the integration definition for the entity?

haughty vine
#

or:

- type: custom:hui-simple-entity-row
  entity: <entity>

will also pass validation

cobalt trench
#

Thank you.

timid beacon
#

Every time I go back to try using card mod for anything remotely complicated I always feel like I'm starting from square 1

cobalt trench
#

How do you inject a sensor value in to a Mushroom Title card please?
The default card includes Hello {{ user }} !.
Is there a different syntax required for entities? Or do I need to create a helper/template?

  title: HelloWorld
  subtitle: 'Last Updated: {{ sensor.entity_name  }}'```
karmic tendon
night hatch
#

hi all, by any chance could anyone point me at a good spot to get support for ui_lovelace_minimalist? their discord appears to be pretty dead (and the latest update for HA and the integration seems to have borked my entire dashboard lol)

tidal vale
#

hmmmmmmmmmmmmmm

night hatch
#

i updated ui_lovelace_minimalist, updated HA, updated the IOS app and now it looks like that

tidal vale
#

yup

split granite
tidal vale
#

I'll try that

night hatch
#

really what i should do is ditch minimalist and just rebuild the whole thing in Mushroom since i can get like, 90% the same look

#

but i'm so lazy

tidal vale
#

on mobile i'm getting this

night hatch
#

yeah it seems to be specifically on mobile it's broken

#

desktop/web seems to work fine

tidal vale
#

it worked fine, but then i refreshed and it was broken on desktop aswell

dark dirge
#

Updating the card will fix the problem

#

Perhaps you just need to clear your cache

tidal vale
#

yup clearing cache did the trick, thanks @dark dirge

night hatch
#

oh nvm found it

#

yep fixed it for me too

night hatch
#

@tidal vale by any chance, since your'e using minimalist, do you know where all of the color templates like "blue_on" are defined?

#

(also, do you know of a way to make it change the color of the main icon in a room card but not the card itself?)

tidal vale
#

uhhhh unfortunately i dont know both of those, sorry

night hatch
#

dang. more google it is 🙂

#

trying to make it so just the circle on the left lights up when someone's in the room, not the whole card

tribal galleon
#

@night hatch can you share your yaml for that button? I'm curious how you put it together.

night hatch
#

oh, FYI i found it - they're in custom_components/ui_lovelace_minimalist/ui_minimalist/ulm_templates/colors/

night hatch
#

now that i've got the colors fixed that results in:

subtle edge
#

I am trying to get a button in my Overview that shows if I have an event Tomorrow in my Google Calendar. I tried the following but I get an error message :

#
  • trigger:
    • platform: calendar
      event: start
      entity_id: work
      offset: "-24:00:00"
    • platform: calendar
      event: end
      entity_id: work
      offset: "-24:00:00"
      binary_sensor:
    • name: work Tomorrow
      state: "{{ iif('work' in trigger.calendar_event.summary, iif(trigger.event == 'start', 'on', 'off'), states('binary_sensor.work_tomorrow')) }}"
tribal galleon
#

@night hatch Thanks. Looking at the docs a bit more. It looks like UI Lovelace Minimalist is a "theme" with included templates.

night hatch
#

everythingsmarthome did a good video on it not too long ago

#

it's all done in YAML so if that turns you off you can get 90% of the same result with mushroom

tribal galleon
#

I'll have to go check out the video and the "theme". I want to see how the templates are made. I don't mind editing in yaml; rarely even use the UI editor. (Wish there was an option to go straight into the yaml editor and bypass the UI...)

night hatch
#

and then i just edit directly from vscode on my desktop and bypass the UI entirely

tribal galleon
#

that's true, but I feel that way lacks the visual representation of the code as it is being edited.

night hatch
#

ah, that's the other half of it - i have a window open to the dash i'm editing so i can refresh and see changes in semi-real-time

tribal galleon
zenith hornet
#

i have a quick question, i have a custom card, how do i set the pixel of the font ? i mean the font size ?

#

type: custom:list-card
entity: sensor.xrel
title: Engineering Feed
feed_attribute: entries
columns:

  • title:
    field: title
    style:
    - white-space: nowrap
    row_limit: 10
tribal galleon
#

Looking at the docs, it seems the style is applied to each column. From the example this might work yaml columns: - title: Title field: title style: - font-size: 20px

zenith hornet
#

ill try, thx 😄

#

@tribal galleon thx ! it worked !

#

sorry im a noob, started few days ago 🙂

#

oh, ure so fast for this 😄 with installed card-mod 3 how can i set an card to transparance ? 😄

#

with this: added at bottom, only 1st of each row is transparent 😄

#

style: |
ha-card {background: transparent; border-style: none; border: 0px; box-shadow: none;}

boreal flame
#

is it possible to use the same style as new alarm on other entities?

#

i want a scenes selector in the same style (home, away, day, night etc.)

haughty vine
boreal flame
#

thx!

frosty flower
#

hi, using state switch and was wondering if there was option for like "preserve last state"

#

example, im using hash for state switch. if theres no hash i want state a, if its #light i want state b, and if its any other hash, i want whatever the last state was

#

is this possible or nah

sonic rapids
#

add a helper and track the state?

pallid hare
#

Greetings all! I'm attempting to integrate the LCARS theme into my HA, and I'm running into a bit of a stumbling block. I've tried retracing my steps for the install process, but so far, nothing is jumping out at me where the wheels might be falling off. And yes, I'm still cutting my teeth on the whole HA/YAML process. So, if anyone out there has been successful with this (or wants to help a newbie figure out where he made a wrong turn so he can learn from it), please let me know. -- Basic problem is that I can get the theme to load, but the classes are not loading properly at all. Thank you very much!

frosty flower
#

ye i was looking and i dont see anything about a preserve state if unknown, just a default

haughty vine
#

oh, my bad

#

dunno if there is a out-of-the-box solution here

#

probably you can do this with custom code (e.g. button-card templates + state-switch)

tropic snow
#

Guidance question on device naming. My Meross entries are very long when captured in Home Assistant. I know I can rename them to shorten. But then I lose their respect association. In the integration view of all the boxes are limited with viewable information. Who or what is the controlling factor when display information is cutoff beyond the windows of the box when the mouse is placed over and entry ?

haughty vine
#

(usually, except for some very legacy, read-only entities)

haughty vine
#

Those are just names for intergration instances. ik those appear only on this screen.
Click on any of them, then select rename from 3dots menu.

#

(the device or service name(s) associated with those integration should remain unchanged - those can be renamed in devices details tab)

tropic snow
haughty vine
#

? I'm confused on what popup you're referring to now...
ik entity names sometimes (inconsistent behavior) have tooltips on lovelace cards, is this it?

tropic snow
#

In the full view of all your integrations in Home assistant are presented, by moving the mouse over various boxes of the apps, sometimes additional info appears "highlighted" about the entry or it reflects a website hyperlink of the HA address /config/devices/device/"entry address"

#

Thanks for the dialog, I think I'll pursue with the developer of the custom item for expanding viewable information.

haughty vine
daring wren
frosty flower
#

hey, it says card mod supports templates, but doesnt say where to put it.
here's my card mod

              style: |
                ha-card {
                  margin-bottom: 14px;
                }```
and the template i want to use

```          {{ '14px' if area_entities('Living
          Room')|select('match', 'binary_sensor')|reject('search',
          'vacuum')|reject('search', 'c11f')|reject('search',

          'lightswitch.iaszone')|list|count > 2 else '0px'}}```
haughty vine
#

if you want to paste this monstrosity, then place whole thing exactly where "14px" value is now (don't remove semicolon).
But this could be more readable with using some variables, eg:

haughty vine
frosty flower
#

lmao ty

haughty vine
#

and I'm not sure if this part: reject('search', 'lightswitch.iaszone') is correct

#

that's a bit unusual entity id, is it valid?

frosty flower
#

oh it should be lightswitch_iaszone

#

whole thing is binary_sensor.lightswitch_iaszone

haughty vine
#

ok makes sense.
I couldn't figure it out what you're aiming for, other then you're counting binary sensors in a room

#

so I named variable is is_found ;)

frosty flower
#

haha, if you were curious, im tryina make an auto-entity based page with all my devices. for this in particular, ive got an entity list with the swipe card, and the 14px is there for the swipe card to accomodate the scroll bar so it doesnt sit on top of the entities. so if there arent enough entities for the scroll bar to appear, i dont want the 14px space

#

but ty

green parcel
#

hey, my Background of the Dashboard is not fully in my set color is this a known issue? in HA 2023.03.X it was all black now on 2023.04.1 it looks like this.

frosty flower
#

me staying on browser mod v 1.5 because this screen is so scary

faint rampart
#

Trying to go about it but how can i show what is playing on my TV on my dashboard and have the ability to play/pause it...

unkempt kernel
#

check dev tools > states and see what your TV shows for info.
then use the entities, states and attributes to build a card.

#

media player card would usually do what you want, if the tv, and controls are the same device in home assistant.

My tv is android, but i control the home entertainment system with logitech harmony hub, the audio is an AV system, cable comes from an STB, so channels and volume are different devices as well. so that card doesnt work for me. custom is the way i have to go.
every tv situation is unique tho.
more info helps

limpid carbon
#

Hello, https://paste.debian.net/1276717/ is what I currently have. Is there any way to hide the player if no media is playing? I've tried to search through the info for mini-media-player and cant find anything specific to hiding the entire player

frosty flower
willow sundial
#

Hi how to get negative value on sensor card?

fluid vine
#

Hi. How do I fix the following issue: I access my homeassistant at ha.example.com and sometimes what happens is that after typing login and password instead of logging me in it offers me to start over. I click on that button, type login password and same button appears again. Clearing cache and deleting all browser’s data sometimes helps sometimes doesn’t. Sometimes changing the browser to a different one helps and sometimes doesn’t. Even when being logged in refreshing the page kicks me back out and offers to login again. What can this behavior be related with?

#

I tried clearing all refresh tokens sometime back. But it seems like HA creates a token each time the same device connects and keeps it in that list. I can see several tokens from the same IP.

somber grove
#

Any suggestions regarding translations not working after last update? Only on the frontend it seems, weather, card showing my family members tracker-state (home, away etc), my entity-filter, are now all in English. Checked the profile and all other settings and they all show my native language as selected.

haughty vine
vast crane
willow sundial
vast crane
#

I don't understand your question then?

willow sundial
vast crane
#

Ok so the sensor is positive, but you want it to appear as negative? In that case I would create a template sensor that flips the polarity. Or maybe something with card-mod can do it, but I don't know about that.

willow sundial
#

yes

willow sundial
rustic oracle
#

Do yaml mode dashboard trigger the lovelace_updated event? When the file is saved or some other point?

#

I'm trying to setup an automation the uses browser_mod.refresh to automatically refresh when needed

haughty vine
rustic oracle
haughty vine
#

that's all ik about them... been yaml dashboards occasionally anyway

#

not sure if it counts as trick but you can use secrets.yaml to store resuable small parts of data and You can have multiple of those files

haughty vine
#

Store parts of css and card_mod that I use in different cards (and button-card templates).

fathom summit
#

Hello! I updated my HA to 2023.4.1 but i cannot find the new Alarm Control Panel with popup pinpad, how do i get it? I still have the traditional with full pinpad opne

vast crane
wary rampart
#

Hello, I can't seem to find the Configuration file to make changes. I'm running in a VMBox in Windows for context. I checked all the locations I was told to look and Windows couldn't locate it for me either. Any help would be greatly appreciated.

wary rampart
vast crane
#

Ok that means yes. I'm not familiar with all the ways to access it, but probably simplest solution is to install "File editor" or "Studio Code Server" addon, then you will be able to access the config within home assistant.

shadow wing
#

Why is the language changed on thermostat?

vast crane
#

some translation keys were changed recently as part of work to do more state translations. I believe it requires contributors to re-submit some translations.

nocturne jacinth
#

Is there an easy way to make an sensor show logbook history in the ui popup?

steep drift
#

hi all

i have seen this from Swakes but im not sure where the background image is from? ive seen a few people use if? any ideas?

fiery ledge
faint rampart
#

what do you recommend for a Spotify card that has the ability to choose the speaker.

#

other question is how do I enable the sound for a tablet for when someone presses a button on my dashboard

faint rampart
#

best way to cast a dashboard to a google hub?

karmic tendon
#

BTW, I tried to set HACS in 'experiemental features' and then hell broke loose, everyhting went slow, also my other docker containers unreachable. Not sure if this is related to 2023.4.1 Although all my integrations and cards are working, I could not add anything. It only showed my own customer repo's. Have now set back everything (non experiemental) and am re-installing all cards /intergation so that they at least 'show' in HACS

sly pulsar
#

Swipe right in Chrome to bring up the sidebar is not working anymore?

deep forge
#

I have a sensor value, but before displaying it on a card I want to do some maths, how would one do this

opal geyser
#

use a template and make a new sensor with that value

deep forge
#

template:
  - sensor:
      - name: "Doorbell Battery Percent"
        unit_of_measurement: "%"
        state: "{{ states('sensor.doorbell_battery' * 10)}}"
opal geyser
#

syntax is wrong, try this:

#
  - sensor:
      - name: "Doorbell Battery Percent"
        unique_id: "sensor.doorbell.battery.percent"
        unit_of_measurement: "%"
        state: "{{ states('sensor.doorbell_battery') |float * 10 }}"```
deep forge
#

I dont see a difference, ill copy and paste anyway

#

Ah

opal geyser
#

and you have to reload HA

deep forge
#

yep

deep forge
#

Does the whole HA need restarting? or does YAMl reload work?

opal geyser
#

i allways reload all, dunno

deep forge
#

ill give it ago

#

Shows up after a full restart, has value unknown

opal geyser
#

i'll edit in the code above

deep forge
#

yep thats worked thank you

craggy orchid
#

Hi all,
Perhaps a silly question, but is there a way to assign a theme to a full dashboard?
I can select a theme in my profile and I know I can assign a theme for a view, but it would be great if I could do a single assignment at dashboard level rather than to assign the theme for every single view that is part of it...

steady bay
#

since last update I'm gettin error on all button card which use button_template_card
cannot read properties of null (reading 'config')
what's worng

steady bay
#

update to 3.5.0 still the same

dark dirge
#

Clear your browser cache

steady bay
#

did it

ancient garden
glacial pumice
#

Is it possible to create a similar looking graph in home assistant? The default history graph is not sufficient because sometimes the entity can have the same value for a week. Then it can change 5 times a day, etc. So i want to be able to view the events with the time and entity value in a similar manner to this
https://pasteboard.co/zPhxbJIlpjR6.jpg

vast crane
#

I would call that more like the logbook than a graph. If you create a sensor without a unit_of_measurement, it should track state changes as logbook entries.

austere geode
#

I would like a button on my dashboard that sets all my cover at a specific position - the covers are grouped in helpers...

tame dove
#

anyone familar with the custom:button-card ?

I have a custom:button-card that only navigates to another page with other entities of the same domain(fan). I have been able to change the icon of the entities (make it spin and change color) on the page it navigates too, but I am stumbling to change the initial card to represent the state of the entities on the navigation page

#

Since the initial button card doesn't have an entity, I change change the icon

golden mistBOT
#

@tame dove I converted your message into a file since it's above 15 lines :+1:

austere geode
#

How do I round a value on my dashboard ?

steady bay
#

any other suggestion about button card template not working since update
Cannot read properties of null (reading 'config')

austere geode
#

what is wrong with this:

#
  • platform: template
    sensors:

    temperature_indoor_roundet:
      friendly_name: "Temparatur Indoor"
      unit_of_measurement: "°C"
    

{{ (sensor.al7002022041414_total_load | float * 2) | round(0) /2 }}

#

IM NEW 😉

faint rampart
#

Is there a way to show on a card the status of what is happening to a cover like opening or closing or its opened or its closed

vast crane
faint rampart
#

I believe so

vast crane
#

Then it seems like an entity or entities or glance or any type of card can show that state? Or is that not working for you?

faint rampart
#

havent tried yet

#

just wanted to ask

#

now that a card can be shown, how can I make it make a sound or talk on my tablet on what its doing

#

How can I make it to where the card is Garage is (state)

vast crane
#

If you want a card to display custom strings, you can use markdown card with templates.

white turret
#

Anyone have some ideas for organizing this up a bit?

steep drift
faint rampart
#

How can I make the garage and the weather cards extend to the black bars...

austere geode
#

Can you toggle between to "call services" in a dashboard ?

still flame
#

Is there a way to add the browse media button for a specific device (sonos) to a dashboard?

half pawn
#

Is it possible to edit the more-info card for a cover. The current card has a purple slider and has a lot of icons and fields I don't want to use. I just want the name and the slider itself.

#

So I want to lose the up and down arrow at the sop, plus the two arrows at the bottom and the 'attributes' field

#

Plus of course if I could change the colour and make the whole card a lot slimmer that would be useful

peak flower
#

After updating to 2023.4.1 i can no longer display states in button-cards from humidity sensors (state value is in xx.x %) . Other cards show the expected value. Anyone else experience this?

peak flower
craggy orchid
#

anyone knows if the multiple-entity-row can be configured with templates?
I'm trying to put a template in "secondary_info" that would be based on a macro.

acoustic hound
#

Anyone know if there is a way to create the card I designed? This is my ideal card for my plant dashboard. I searched HACS but i'm not seeing any custom cards that come close. I would like the icon customizable so I can change the type of plant icon. The default gauge card is too plain since you cant add icons. Thanks!

steep drift
#

might take sometime formatting it with YAML but very dooable

acoustic hound
sonic rapids
#

I think at this rate you're creating your own custom card

acoustic hound
#

Yea, which I am no where skilled enough for that. Is there a place I can make requests for custom cards? Maybe I need to find someone like minded that has the skills. 😄

surreal urchin
#

Anyone got an idea how not all my custom cards are showing?
lovelace:
mode: yaml
resources:
- url: /hacsfiles/button-card.js
type: module
- url: https://fonts.googleapis.com/css?family=Comfirtaa@display=swap
type: css
- url: /hacsfiles/bom-weather-card/bom-weather-card.js
type: module
- url: /hacsfiles/lovelace-auto-entities/auto-entities.js
type: module
- url: /hacsfiles/mini-graph-card-bundle.js
type: module
- url: /hacsfiles/PlantPictureCard/PlantPictureCard.js
type: module
This is from my configuration file and only the lovelace auto entities show and a weather card. THe other ones doesn't show. Restarted multiple times.
And I can't create them manual in the add card manual -> type: 'custom etc.' it's saying that it doesn't exist.
I've checked the file location and naming, but that is correct.

compact pebble
#

I am trying to load an image in my custom lovelace card and can test the http image is accessible in my browser but home assistant card won't load it. My home assistant is https, how do I get the image to load in my card.

austere geode
#

Im trying to make a button on the dashboard that can toggle two services
action:

  • service: water_heater.set_operation_mode
    target:
    entity_id: water_heater.egevej_8_tank
    data:
    operation_mode: "off"
    and
    action:
  • service: water_heater.set_operation_mode
    target:
    entity_id: water_heater.egevej_8_tank
    data:
    operation_mode: "heating"
vast crane
ancient garden
#

should look like this

acoustic hound
ancient garden
#

ahhhh ok
I see

acoustic hound
#

I should have cropped better, the 4 bottom cards are the ones I already use, I tried to design something that would give more info without having to have a gauge card and a status card.

ancient garden
#

you mean the card from the top?
Since it's a custom button card you can add as much stuff as you like in here.

#

for example something like this?

austere geode
#

switch:

  • platform: template
    switches:
    blind:
    friendly_name: "Blind"
    value_template: "{{ is_state_attr('switch.blind_toggle', 'sensor_state', 'on') }}"
    turn_on:
    service: switch.toggle
    target:
    entity_id: switch.blind_toggle
    turn_off:
    service: switch.toggle
    target:
    entity_id: switch.blind_toggle
verbal flame
#

are there any other options to hide sidebars as browser mod?

dark dirge
golden mistBOT
#

To format your text as code, enter three backticks on the first line, press Shift+Enter for a new line, paste your code, press Enter again for another new line, and lastly three more backticks.
```yaml
example: here
```
Don't forget you can edit your post rather than repeatedly posting the same thing.

dark dirge
#

you've already posted the code that you want for on and off

#

what is still confusign?

austere geode
golden mistBOT
#

@frosty flower I converted your message into a file since it's above 15 lines :+1:

frosty flower
#

ive got an entity binary_sensor.dishwasher that this card isnt detecting

#

but if i remove area: Kitchen it shows up

#

yet the area assigned to the entity is Kitchen

#

so im a tad bit confused on this one

frosty flower
#
  "binary_sensor.dishwasher",
  "light.kitchen_lights",
  "button.kitchen_light_2_identifybutton_2",
  "number.kitchen_light_2_onlevelconfiguration_2",
  "sensor.kitchen_light_2_smartenergymetering_2",
  "sensor.kitchen_light_2_smartenergysummation_2",
  "light.kitchen_light_2",
  "sensor.motion_sensor_illuminance",
  "sensor.oldmotion_sensor_battery",
  "binary_sensor.motion_sensor_motion"
]```
#

but its picking up an entity thats no longer in that ({{area_entities('kitchen') }}) and not picking up binary_sensor.dishwasher

umbral gate
#

Is there any component out there that would cycle through the views on the Home Assistant UI?
I’d love to have a dashboard displayed on my chosen screen that would rotate views every 15-20secs.
Cameras > Energy > House Temp etc.

i've been digging abit but not sure if BrowserMod or Kiosk via HACs is the best approach.

frosty flower
#

a combination of state switch and a template sensor would probably be best

#

or easy at least

umbral gate
#

i'll give it a gander

rustic oracle
#

How much of a dashboards performance is affected by server specs vs client?

#

Put another way, will a complex dashboard setup run better on a low spec client if server is beefy?

prime narwhal
#

I dunno. Probably not noticeably faster.

tidal dirge
#

probably in general, fetching of data is affected by server beefiness, but the rendering won't be. Probably most of the time the client will be the more impactful side of that unless the server is very weak or the client extremely performant

hallow panther
#

Hi . Any help so to find the program involved with the polymer deprecation ? I think we are many to try and anticipate the next release polymer suppression and we don’t know how to find how . Thanks

sonic rapids
#

program?

opal jay
#

i have issues get a background theme for my home assistant.. I just made a clean install of home assistant within docker and installed hacs & downloaded ios themes. But the background still doesnt chhange.. Thought it would just be install the theme and edit it here

#

Am i missing something else?

flat aurora
#

I’ve got some smart lights working with the standard light card. I want to add scenes to the bottom of that card, so I can set it to reading / bright / purple etc.. I’ve made the scenes but not sure how I can add some buttons to the bottom and switch scenes.

plain mural
#

Heya. Im working on getting incomming sms messages into HA. Does someone has an idea how to display them and be able to remove the messages. I was thinking of misusing the shopping list.

someone else has a idea?

ashen eagle
#

Hi i downloaded nut mushrooms and yt video said i should download the theme too but according to the descritpie of the front it says it is not necessary so i didn't.
I also added the url to dashboard and then recourse and there is still nothing. I still have the same dashboards and if I make a new one there is nothing of mushrooms. can someone help me?

unkempt granite
#

Is there any way to round sensor values for a card?

austere geode
haughty vine
#

No the cards doesn't need special theme to function

#

That screenshot is from themes repo

haughty vine
haughty vine
# ashen eagle Yeah this

oh sorry, I looked at the screenshot and thought it's your actual dashboard 😄 (long day, tired & stuff)

#

are you not having any "Mushroom" cards in "add cards" dialog?

#

is the Mushroom visible in ur browser devtools console during loading?

ashen eagle
haughty vine
#

yes, select console tab and reload

#

most custom cards will advertise itself and version number when loading page

visual leaf
#

Could I get a hand from anyone familiar with Expander card?

#

Having trouble pushing the 'Bedroom' expander across to match the rest of the buttons

haughty vine
ashen eagle
#

Yeah I dont see anything. Maybe doing something wrong?
I just intalled the Mushrooms via HACS and reloaden HA and I saw that it didn't come so I just looked into the description and sam that you can do it manual. So I tried that also but still nothing. Did I do something wrong?

haughty vine
ashen eagle
#

When I installed it via HACS I had nothing there so I added it manually and this is what I added

rancid vortex
#

Hello, With a last update 2023.4.2, I've my frontend is ko . my whole interface is in error. Do you know what the problem is?

haughty vine
#

(this time hacs should add configuration for you)

ashen eagle
haughty vine
#

that should go before a)

ashen eagle
haughty vine
#

it's a folder in the root where all the HA config (configuration.yaml ect) is located

haughty vine
#

ok it's already there I see

ashen eagle
#

okey

#

I will now restart it and download it again

ashen eagle
haughty vine
#

Do you have any smart Humidifers or Locks or Covers / Shutters devices added to HA?

haughty vine
#

that's why those type of cards are empty. Mushroom have a cart type for most common entity types
(and general one without controls for others)

ashen eagle
haughty vine
#

yeah the extra restart after following configuiration does the trick
it's an long standing bug with hacs that apparently has not yet been fixed

ashen eagle
#

yeah but now it works finally

daring vector
#

Does anyone know why the line color of my mini graph card is orange when I set it to lightblue?

type: custom:mini-graph-card
entities:

  • entity: sensor.envoy_122150035447_last_seven_days_energy_production
    show_state: true
    show_graph: false
  • entity: sensor.envoy_122150035447_today_s_energy_production
    show_state: false
    hours_to_show: 168
    name: Opgewekt Week
    points_per_hour: 0.25
    line_color: lightblue
haughty vine
#

(i sus it's a bug since docs mention it should have worked)

daring vector
#

Thanks a lot!!!!

#

Works now 🙂

shrewd marsh
#

Anyone know if I can use a template to change the icon for the Mushroom Climate card?

haughty vine
#

no.
a) you can only do it using mushroom template card.
where you have to provide exact values for states / icon / colors ect
then, "glue it" to mushroom climate card, with primary, secondary and icon hidden (using card_mod or stack-in-card) to get controls.

#

b) or you can use card that supports templates (e.g. Button Card) and place Mushroom Climate inside it.

shrewd marsh
#

Good to know. Also, thanks for those options, I'll see what I can do!

hot wasp
#

is there an easy way to disable relative date formatting in different cards, or across the board? I have a simple card rendering sunrise and sunset, and instead of 7hours ago, I'd want it to say 6:33AM or whatever.

#

When googling about this very problem, I seemed to find more results for people trying to render relative time, not the inverse

vast crane
#

Not generally. What is a "simple card", exactly?

#

entities card has some control over the format, I don't think others do

hot wasp
#

I think it was an entity list?

#

I just picked diff entities, and it could choose icons and stuff, but it just rendered dates for me. Saw no place I could change formatting in the UI. Code editor may allow me to do that

#

(I'm new to home assistant, but have played with configurations and added sensors and things)

vast crane
#

You'll have to go into yaml mode, and add format: time

timid beacon
vast crane
#

oh actually that would only work for a timestamp sensor

timid beacon
#

I kinda suspected as much that it had to do with resources being lazy loaded

#

I'm really surprised more people don't report flakiness with those container cards. It's been really frustrating for me

hot wasp
#

Tim0 that actually did exactly what I needed

timid beacon
#

I would think auto-entities could have some kind of retry logic for cards that aren't loading

small light
#

Updated today and after that it stopped working

haughty vine
small light
#

looks like an issue with browser cache

#

odd

haughty vine
#

e.g.: changing hacstag= part of path after each update

small light
#

I went to load firefox because I like to use that for devtools and it loaded no issues there.

#

SO then I went back to safari, dumped the cache, and it loaded fine. I mean it kinda makes sense if they updated the javascript that would cause it.

fluid stratus
#

I have a bunch of sensors that deliver a whole host of entities and I wish I had an easy way to bundle them up into a less ugly view. Does anyone have advice about how to deal with that? (For example, my stove and my air quality sensor both dump a TON of entities into my namespace.)

frosty flower
#

Question, if I'm on homeassistant.local/lovelace and I go to homeassistant.local/newpage and then homeassistant.local/newpage#expanded, if I press the back button it will take me to homeassistant.local/newpage but I wanted to take me to homeassistant.local/lovelace. Is this possible?

frosty flower
fluid stratus
#

(Currently trying to figure out why a Tradfri ZHA pairing didn't produce a light.XXX entity.)

rare junco
#

Is there a way to set up input_numbers and make gauges in the front end change to different input numbers based upon a drop down selection?

frosty flower
frosty flower
rare junco
frosty flower
#

is the drop down always linked to the same things that you need

rare junco
#

I will create a drop down (I've not done it yet) but for example :

Chicken - ill want a certain prob to reach 70degrees and prob 2 to reach 100

Beef ill want a Probe to reach 78 and prob 2 to reach 120

Then based upon a selection will change the entities as required to preset numbers

frosty flower
#

built in way is to use the conditional cards to show only when the input_number has each desired state. easier way if it gets complicated is to use the state switch custom card

rare junco
#

Thankyou - I shall take a look into this !

hot wasp
#

is there any way to configure multiple columns fairly statically, but via drag and drop? I'm really not the best with yaml configs and it seems like I get more than a couple cards on the screen, adn things start going badly quick

#

it seems like all thats really supported from editor ui is a mansory view

golden mirage
frosty flower
#

The theme I'm using for my cards is mushroom theme but I'm not quite sure if that's the question you're asking

frosty flower
karmic tendon
#

I started using the vertical layout of the dashboard and added break-cards, this nicely puts the cards in the for-me-wanted-columns without the infernal switching. Drag/drop would be nice but not more than that...how often does one change a dash?

solar spruce
#

Hi guys! I am in the process of installing 4 tablets with HA through wallpanel in my home. How/what can I do so that after navingating away from the default view for each tablet - the tablet automatically returns to it's default view after a preset amount of time? I know this is possible with fully kiosk but I would rather not have to pay for that software. I am open to any suggestions you may have! Thanks!

tribal galleon
#

While FKB is pretty cheap, you can use the software for free, technically. Grab the software and load it onto a tablet and check it out. Basic features (which is still alot) does not require payment. You can even try out the Plus features to decide if you do want to spend the money on it. FKB will enable the feature but put a watermark on the screen. At less than $10USD/screen, it is hard to beat.

#

But to answer your original question, I imagine you can probably accomplish something similar with Tasker. Another option could be to use a browser plugin such as Tab Reload or Tab Auto Refresh.

solar spruce
#

Well I use WallPanel - which is a completely free alternative to FKB with 95% of the features. I figured it out using browser_mod...so a bit of searching, trial and error - and I saved about 40$. Thank you for your help though!

tribal galleon
hot wasp
hot wasp
rancid vortex
#

@small light Thanks. It's back to normal with clearing the cache! cool !

frosty flower
#

You can do all of the same editing as the regular built-in cards by UI, the extra functions need to be done in yaml but you can do that by clicking on the edit Tab and putting the custom code in there. Check out the documentation, not much is required in terms of getting it set up to work better. For example with my cards the only yaml I use from layout card is max-cols

#

Documentation also describes the big differences between the layout cards and the default cards and honestly at least for me those two things are really the only thing you need to know

rancid vortex
#

I've an another issue . With my person card, I can't color my gps icon when I'm at home and I can't make my geolocation point appear either.

#

I use the minimalist card_person_info and popup_custom_card_person

digital tundra
#

I am creating a minimalist UI for my house. My ceiling lights are not light entities, they are switches (I have smart switches and dumb lights). Is there any way I can use the mushroom light card with switches?

#

I know I can use the template card, but I'm not sure how to get the light icon to toggle colour based on whether the light is on or off.

dark dirge
#

You can change the switches to lights

digital tundra
#

Thank you!

woven bramble
#

is there any gmt timezone option for the US Northeast? it seems like there is no options besides the caribian

woven bramble
#

there is no New York Option

#

there was before but since i upgraded from Docker, there just has been no option

tribal galleon
woven bramble
#

okay! ill try that one out and ill report back if any of my Automations fire off to early or late

tribal galleon
#

@woven bramble you can double check sensor.time to see if it is accurate.

woven bramble
#

would that be in devices services where i can serch for it?

tribal galleon
#

Go to Developer Tools > States and then Filter entities (to show sensor.time). (I can't remember if Developer Tools is enabled by default or has to be turned on somewhere...)

woven bramble
humble river
#

Hello does anyone having problem with button card since HA latest update ?

tribal galleon
woven bramble
#

thank you~

tribal galleon
humble river
woven bramble
tribal galleon
#

Do you mean when you try to edit configuration.yaml? How do you have HA set up: on a Pi, Promox, etc? You can use File Editor or Studio Code Server add-ons to edit the file. Or use the Samba share add-on to edit on another machine.

woven bramble
#

sorry, i have it setup for RPI 4

tribal galleon
#

Did you take the SD card out of the Pi and try editing it on your Windows machine?

woven bramble
#

Yes, when i try to open the drive it tells me to format.

tribal galleon
#

Yeah. Windows doesn't like Linux-formatted cards. It can be done but the suggestions above (with the add-ons) is a better option.

woven bramble
#

okay that will work better, thank you again

karmic tendon
night cape
#

hi, someone has tasmota ir in use with a clima?

jolly owl
#

Has anyone used the decluttering-card to template a mushroom-cards chip? I suspect it's not possible because it's wrapped by a mushroom-chips-card, but the chip still inherits from ha-card, so maybe I'm wrong?

frosty flower
#

caps lock is amazing i wasnt trying to tell i swear 😅

mental thorn
#

Hello! I have a theme that I'd like to include some additional elements with and I'm wondering if it's possible.
• A custom toggle entity
• A custom .js file
I'd like to minimize the work that the user needs to do to enable all the features, so if I can automate the creation of the entity and the inclusion of the .js file, that would be ideal.
I suspect I am veering outside of simple theme territory and getting into Integration or Add-on territory.
For reference, the theme is https://github.com/th3jesta/ha-lcars
I appreciate any input for how to move forward with my goals.

mint skiff
#

hi

#

i have created a generic_thermostate.yaml but when i try to add a thermostat card i can´t find the entity.

vast crane
#

Is it included in configuration.yaml, and did you reboot after doing so?

mint skiff
#

so i shouldn´t create a new folder called climate/generic_thermostat .yaml ?

vast crane
#

that's up to your personal preference if you want to do that. but ultimately you either need to put a generic_thermostat in configuration.yaml, or create it in a separate file, and then tell configuration.yaml to include that file.

if you just created that file, but did not include it, it will not take effect.

mint skiff
#

aha ok just like the automation: !include automations.yaml for example?

vast crane
#

something like that

mint skiff
#

🙏

vast crane
#

you'd probaly have climate: !include generic_thermostat.yaml, assuming these are your only climate entities. if you have multiple, might need to reorganize them somehow

jolly owl
mint skiff
#

Failed to reload configuration
Cannot quick reload all YAML configurations because the configuration is not valid: Invalid config for [climate]: required key not provided @ data['platform']. Got None. (See /config/configuration.yaml, line 15).

vast crane
#

use a codeshare site to show your configuration.yaml and your generic_thermostat.yaml and someone can look at it.

real vine
#

Ehm, what do you need to do add a shadow under the header? i'm using ui lovelace minimalist and can't for the life of me figure out how to add it

shadow nymph
#

I'm trying to implement this: https://redd.it/12jwk4c and am having an indentation problem. I've nearly got it except for the conditional on whether it should show left or right. I have no idea where the - type: conditional line should be indented to. I'll post what I've currently got below, but it just prints out my conditional block as plain markdown (which makes sense) but if I try to change the indent it yells at me for bad indentation.

golden mistBOT
#

@shadow nymph I converted your message into a file since it's above 15 lines :+1:

mint skiff
vast crane
#

Best thing you can do is post screenshots to an image share site, post your code to a code share site, and someone can look and see where you might be going wrong. you haven't provided enough information for anyone to know how to help you.
Actually I forgot you can post image snips in this channel, so you can skip imgur and just post them here.

mint skiff
#

climate:

  • platform: generic_thermostat
    name: greenhouse
    unique_id: 12345
    heater: switch.tz3000_2putqrmw_ts011f_switch
    target_sensor: sensor.lumi_lumi_weather_temperature
    min_temp: 5
    max_temp: 40
    ac_mode: false
    target_temp: 10
    cold_tolerance: 2
    hot_tolerance: 0
    initial_hvac_mode: "off"
    away_temp: 10
    precision: 0.5
#

now i can see the correct temp and manually turn plug on/off but its not turning on automatically when below 8🤦‍♂️

frosty flower
white turret
#

fast forward to 1:35

vapid field
peak flower
sonic rapids
#

have you tried clear cache reload?

vast crane
#

there's a couple issues reported related to buttons on github, one got a fix submitted that hasn't been released yet, some of the others are unclear if they are the same issue or different issue.

#

you might also clarify if you're talking about default button card or custom:button-card

peak flower
#

For my part it is the default button card, currently using the HA app on ios. Im not able to reload cache until i get in front of a computer
I know of the issue where buttons with percentage values no longer where visible but after todays update every button-card is broken regardless of value

white turret
#

I don't have any frontend stuff installed through HACS

peak flower
sonic rapids
#

I think you can do it inside Chrome settings for android?

white turret
#

clearing data did not help me

#

i'm just staying on previous version until fix is released

#

praised be the skip button

vapid field
#

Deleted the cache from HA app and from Chrome, restarted the app a few times and now it works as it should

tepid birch
#

Dashboard broken for me as well. brr.

#

Would be interesting how to clear the Android app chrome cache without the need of reconfiguring everything (the whole app) brr

#

Ok the "normal" webversion is broken for me again. Even after deleting the chrome cache. WTF

vapid field
#

Well I talked to soon. But I found out a work around, the cause I don't understand. If I press the account button, your name on the left below, then the button card does work. If you close the app, it stops working

tepid birch
#

@vapid field Yeah you are right

#

Seems to be the assets are broken

paper flame
shut robin
#

hey guys, i want to make a qr code for my wifi network so people can join and add it to a card in HA - is this something easily doable? if so, how has everyone done it?

raw stream
#

Hi. Is it possible to make a particular view visible/invisible for all users depending on the status of some input_boolean?

cosmic apex
#

Hi there am kinda new to HA and trying to install a Mushroom using HACS but am getting this warning and the mushroom cards or buttons are not showing up if proceed.

#

i need to know what to do next after the download

cosmic apex
#

just like that?

lyric prairie
#

Yes

topaz hound
#

Hi! I updated my HAOS to the newest version and now 'buttons' dont show in my dashboard anymore. Anyone else with this issue?

fierce galleon
#

But I found out a work around, the cause I don't understand. If I press the account button, your name on the left below, then the button card does work. If you close the app, it stops working

covert veldt
#

Yep, same issue with buttons/cards disappearing from the both the mobile app and desktop browser. Clearing cache or trying a different browser makes no difference.
Some cards are still visible. However I had 12 light toggles in a grid card which have all vanished. They are still there in the yaml, but not displayed.

Was working fine on v 2023.4.2. And disappeared as soon as updating to v203.4.3 - April 12.

covert veldt
#

Have tried to downgrade using the command ha core update --version 2023.4.2 and it says the command is completed successfully, but it's still running v2023.4.3 after a reboot.

covert veldt
rare junco
#

Is it possible to make persistent notifications through HA that don't go away until a state changes?

haughty vine
rare junco
haughty vine
rare junco
rare junco
rare junco
#

Thankyou!

haughty vine
#

Take a note that tag: acts like id for notifications in Companion App (equivalent of notification_id: in standard HA notifications).
It's not required to set it to exactly "persistent" like in the example.

torpid harbor
tribal galleon
haughty vine
#

I feel like recent cache issues just proves that UI mode is superior 😉
btw HACS can perfectly manage Resources tab as long as main dashboard is NOT in yaml mode.
You can still make as many additional yaml dashboards as you like.

#

HACS changes each js module url slightly after it's updated in order to force invalidating cache
if this is not done it's just asking for loading old versions issues

sonic rapids
#

Cache busting UI is an age old problem heh

naive cairn
rough verge
#

Is there a way to restart the webserver of HomeAssist? Pointing my browser to homeassistant.local:8123 generates an empty page, but HA core is running

haughty vine
vapid field
#

The solution for now with the button card issue, is to go to your profile and don't use auto for the time, first day of the week and the figure notations. So change the settings and don't use auto. And solved with the newest update

hasty kernel
#

What's up with the frontend? I have been using Minimalist UI Mobile Theme. When updating to 2023.4 it started to mess up. The buttom navigation was screwed. I have just now updated to 2023.4.4 and can no longer open the side menu with a swipe action and effectifly lost access to the menu

shadow nymph
#

If I want to update a date/time helper with the current date on button press, do I need to create an automation that runs, or is it something that can be done in the card YAML?

sly pulsar
# hasty kernel What's up with the frontend? I have been using Minimalist UI Mobile Theme. When ...

There is a new ULM update available in HACS. Once there where a handful of people maintaining the theme but they all left the building. So for now only @lyric prairie is keeping the theme up to date and trying to fix as many “bugs” as possibles but note that most of them are fixes for recent drastic core and frontend changes. I hope there will some more help in the feature so we can keep this amazing theme alive. Btw, the sidebar have nothing to do with ULM, you need to update your companion app.

spiral vale
#

So timetimes when i update home assistant on some devices some cards disapear. I got a dashboard made for mobile devices and on one phone a few of the light buttons are misisng while on the others the button shows

hot wasp
#

is there anything like a templated repeater card? I'd like to provide my own daily forecast that includes descriptions of the conditions (and do it vertically)

hot wasp
#

also any way to make data display more dense?

timid beacon
#

Does anyone have any strategies on how to include multiple icons where one would normally go? On some dashboards I'd like to keep things as terse as possible

umbral harness
#

Can you paint us a picture in mspaint?

sonic rapids
#

mushroom lets you do that with template card I think. the icon can use a template

timid beacon
#

I assume the template would still expect it to resolve to the name of a single icon though, no?

#

And to clarify, I mean multiple icons at once.

sonic rapids
#

oh you want multiple icons at the same time

timid beacon
#

Yeah, sorry

umbral harness
#

We might’ve gotten a mspaint masterpiece but now we’ll never know

sonic rapids
#

lol

timid beacon
#

lol

sonic rapids
#

I mean I don't se how it would be rendered still yet

sonic rapids
#

like let's say you had 2 icons you wanted

#

how would you show that in the space of 1 icon

umbral harness
#

Why can’t you use a nested grid card

#

Or multiple of them

#

Like oldschool html but slightly sexier

timid beacon
#

I'd be fine with it taking up extra space. I'm hoping to preserve screen space by using icons to describe something instead of words. For instance an icon showing the state of the upstairs bathroom light would be like an up arrow, bathroom icon, and light icon (i don't actually have an upstairs, but just an example)

vast crane
#

entities card button row maybe?

timid beacon
#

That could work. Main worry there would be the space added between cards, but that could probably be fixed with card_mod

sonic rapids
#

at a certain point I think you end up with an unreadable card

#

too many icons

umbral harness
#

What are all those icons doing @vast crane

vast crane
#

nothing just added it for a mockup for purposes of this conversation.

umbral harness
#

Weather for multiple days?

#

Oh lol

timid beacon
#

Sun goes down, moon goes up.

#

Clearly when the sun dies it will be only moon

hot wasp
#

I'm impressed with what you can do with home assistant, but find doing ANYTHING remotely custom as far as user experience and layout to be a pita

sonic rapids
#

but essentially you're asking if there's a way to output icons

umbral harness
#

And worse, breaking changes to custom ui are common

#

So I steer clear as much as possible myself

hot wasp
#

sorry I'm not trying to bash or be... unappreciative or ungreatful

umbral harness
#

It’s fine to speak your mind

#

Sometimes

sonic rapids
timid beacon
#

I'd say being able to do custom things is fairly easy. Definitely a steep learning curve though. I still forget how to use card_mod every time I try to do something

hot wasp
#

I just wish I had something like grafana. Will I be changing layout often? No. but it would be nice to ahve stuff where I didnt have to constantly drop into yaml editing

umbral harness
#

Things can’t be easy and also have a steep learning curve

hot wasp
#

and

umbral harness
#

Calculus is easy you just have to memorize 5000 things

hot wasp
#

right now it seems like my dashboard wastes so much space, no more room to drop cards

timid beacon
hot wasp
#

but its really not all that dense with information

umbral harness
umbral harness
#

Like low battery, bad weather, etc

sonic rapids
#

Optional The entity_id of the entity you want to show.

timid beacon
#

Yeah honestly dashboards are almost an antipattern, but if you do want them, you should be using conditionals all over the place

umbral harness
#

Basically people fall into two camps- either you spend a ton of time constantly tweaking dashboards or you just make basic ones and rely on automations and voice control for most of the smarts

timid beacon
#

Like if my dishwasher, washing machine, dryer isn't on, why would I want it to take up space on my dashboard?

hot wasp
#

I think thats fair

#

I just want more dense data display 🙂

umbral harness
#

Depends. I prefer to have an all in one dashboard and then purpose built dashboards

hot wasp
#

and I want a bit more control of stuff like there are plenty of weather cards ou tthere

timid beacon
#

It looks cool, and I definitely went through that phase, but now I just want my dashboard to be a slim as possible

hot wasp
#

I mean for this dashboard I'm building, its to serve data to an inkplate10

#

which is non-interactive at all

#

just displaying info from integrations

timid beacon
hot wasp
#

cept even in that shot, I cant get my dashboard to be even half as dense as that

#

even at high res

timid beacon
#

Speaking of conditional cards, does anyone else run into problems with auto-entities or state-switch where it won't display custom cards?

hot wasp
#

I dont know if there are settings or special themes or something (though if I'm honest, I'm not sure I've seen differences in themes

timid beacon
#

I finally figured out what the problem was, and it seems like a pretty glaring bug with both of those cards, but I guess more people don't run into it?

hot wasp
#

switching between the different minimalist themes

timid beacon
#

The problem is that custom cards load async, so if auto-entities tries to load a custom card before it's been loaded, it errors out.

hot wasp
#

is there a card where I can pull data from a list (say a forecast) and render data from the template for each day in the forecast (preferrably vertically)

#

(sucks coming from web dev background where I'd just have template repeat for n items in an array)

timid beacon
hot wasp
#

thats not my screen

#

and I agree a lot of that is

timid beacon
#

Like why do you need to know sunrise? Or even sunset? Much less needing a giant graphic

#

Worst cast, have it display sunset only if it's after like 3pm or something and then hide it after the sun has set

hot wasp
#

this is my current dash

#

I feel like a lot of those widgets like sunrise/sunset, and living room temps shoudld be smaller, same with garage door status

#

seems like I should be able to combine my solar banks

#

(also I wish those sensor cards could be since midnight, instead of just last 24hr)

timid beacon
#

There are more advanced graph cards that can probably do that

hot wasp
#

honestly I feel like if thre was a way to set scale, or do like a zoom out so that they cards themselves arent so large

#

thats why I was saying something like grafana

#

not that I want grafana here

#

just drag drop

#

if I want this graph to be smaller, I just resize it smaller

timid beacon
#

lol don't get me started on drag and drop. I still think the most glaring problem with HA is how you have to rearrange cards on a dashboard with arrows that move things to completely unintuitive locations

sonic rapids
#

their reflow as much to be desired

#

but I think of it like they have room for improvement on the UI friendliness front

#

the power of it is in the flexiblity/yaml atm

timid beacon
#

Someone took a swing at it a while back who works for nabu casa. It worked fairly well

hot wasp
#

I've built shit like that from scratch not so much dashboards, but interfaces that wre basically designers

sonic rapids
#

I work on software essentially for people to design dashboards lol

hot wasp
#

where you lay shit out, components fill up the container size you gave it

timid beacon
#

It sounded like there were some technical challenges

sonic rapids
#

we ended up supporting multiple layout types

#

some people want a fluid one, some people want exactly this dimension / resolution etc

#

and even in the fluid one they want configurations per device type

#

like they want reflow to happen like x for tablets and like y for mobile

hot wasp
#

after trying to get this dash that looks the way I want, I actually got to the point where I was wondering if there was a way I could just use homeassistant as an API and build my own frontend

sonic rapids
#

and hide this for that device, and that for the other.... it's a lot of work

#

lol

umbral harness
#

Omg Becky that’s so responsive

hot wasp
#

its pretty, and generally works pretty decent

#

I wonder how hard building custom cards is

#

instead of bitching I could just do that

timid beacon
#

Depends on what you want to do

hot wasp
#

well say for just rendering weather the way I want it to display

#

slap together yet another weather card

#

but rather than bending some existing one to get what I want in it, I could just create one that serves my needs from the get go

timid beacon
#

I mean do you want a 3d animated ray traced sun graphic that winks and smiles at you when you walk into the room?

hot wasp
#

no not at all

sonic rapids
#

I mean if they had some kind of way to have you define reusable cards in home assistant and then be able to embed those into other solutions

#

then you could have people use x, y, z dashboarding tool to lay it out maybe

timid beacon
#

Because the "the way you want" is kinda the crux of it lol

#

That could be easy or it could be hard

sonic rapids
#

reuse of cards would be nice too

timid beacon
#

There's decluttering card, but I've actually kinda found it useless since it only works per dashboard

#

Can't share across dashboards

#

I don't want to go yaml cuz being able to play with things in the UI I think is pretty important. It's too bad some of the advanced features aren't available there

#

At least now that we have macros that can reduce a lot of duplication

hot wasp
#

thats the other thing I like about something like grafana

timid beacon
#

Btw are you familiar with the grafana addon?

hot wasp
#

oh I want to display this metric, I can pick the formatter, and the label stuff, maybe create an expression that translates data

#

no because I dont literally want grafana or anythign from grafana here, I just like the way you layout and configure items on dashboards there

bold crow
#

Curious what folks use to display "alerts" or temporary messages?

For example, I have a temp controller. If the automation that controls my temp high phone notification fires, an alert should show on the dashboard.

I could create a conditional card for each case, but I'm wondering if there's some HACS add-on where I could just fire a service and have a single card that compiles all alerts... If that makes sense.

vast crane
#

I kind of like an entity-filter card for showing anything that I might consider an "exceptional state". I use a glance card as the type.
so my first card on my home dashboard has a little icon for anything I want to show as sort of an alert.

#

Check out the "Alert" integration too if you're not familiar with it. It handles repeating notifications and giving you an entity that tells you if something is in an alert state or not.

timid beacon
#

I have something like this for my alerts using a template. Roughly this:

states.alert
|selectattr('state', 'eq', 'on')
|map(attribute='entity_id')
|list
foggy fox
#

Hi all should the following not work to turn two light bulbs on? If used in an automation.

      target:
        entity_id:
          - light.bulb_l
          - light.bulb_2
      data:
        brightness: 100```
sonic rapids
#

what does it do?

foggy fox
#

It only turns on bulb 2

sonic rapids
#

maybe try it from the dev tools / services tab and see what happens

#

try bulb 1 alone too... looks okay at a glance to me though

foggy fox
#

call service works ugh

#
data:
  brightness_pct: 100
target:
  entity_id:
    - light.bulb_1
    - light.bulb_2```
#

maybe I will try swapping where data is. as services created, see what happens thank you

sonic rapids
#

👍

dark dirge
#

the order doesn't matter

#

it's more likely to be something else in your automation if the service call works in devtools -> Services

#

or another automation

sonic rapids
#

but also brightness vs brightness_pct

#

maybe it's setting it to 100 / 255 for the first one and you don't think it's working heh

#

(or it doesn't support that)

dark dirge
#

true, brightness: should work, but maybe it's too dim

foggy fox
#

sounds plausible but still did same thing, I will show entire code

golden mistBOT
#

@foggy fox I converted your message into a file since it's above 15 lines :+1:

sonic rapids
#

if you're single why do you have a wife

#

I wonder if you can figure out what's happening with bulb_1 when that thing runs

#

since you see bulb_2 lighting up from it I assume

foggy fox
#

yup everything works except bulb 1 doesn't light up

#

trying 3 bulbs now see what happens lol

#

same brand bulbs same light fixture

umbral harness
#

what's the state of bulb_1?

#

is it deaded?

foggy fox
#

switch in overview shows off and states shows off as well

#

my bad forgot to reload the brightness change seemed to resolve it. Thanks @sonic rapids got me on the right path

bold crow
bold crow
golden mirage
#

I use custom button-card.
Now, i want hide the row Gió Nhỏ - Gió Vừa - Gió To when Quạt Trần is off, and showing when Quạt Trần is on.
How to do that
can Someone help me.
Thanks

sonic rapids
#

Wow so many things connected in your kitchen

timid beacon
#

One drawback of alerts is that the action is restricted to notifications. It would be nice if you could run arbitrary actions such as scripts or service calls. I recall seeing Frenck calling this out as well on github somewhere.

cosmic apex
stuck path
#

Hi, I’ve just upgraded to the latest and notice the mushroom entity card is now showing my Eve door Sensor as on/off, rather than open/closed.. any ideas?

austere geode
#

Is anyone using Power Flow Card ?

winter hearth
#

i have a header of type buttons which shows a lot of binary sensors. is there a way to only show the active ones?

winter hearth
#

instead of header i used a separated card: entity-filter of type glance. works exactly as i wanted.

tame dove
#

If I want to use card mod to get rid of the header for a tablet UI it has to be done in a theme.yaml? I don’t want to change the theme, just get rid of the header. How?

vapid field
#

i would like to add a virtual numpad on home assistant to use to enter numbers into the input boxes how can i do that

vast crane
vapid field
#

you couldn't use what home assistant uses for alarm

vast crane
#

That came to mind, though I know recently it seems like the alarm keypads were being ripped out in favor of a dialog that pops up when armed. So I'm not sure how repurposable that is for a generic keypad. Or maybe that's just for tile card, and the alarm control card will stay as is...

vapid field
#

therefore there is no virtual numeric keypad for home assistants ready to be entered

#

i tried looking everywhere i cant find anything like to create it

fallen badge
#

Can I somehow only change the app-header-background-color on smaller screen devices with card_mod in the theme?

#

This will make the header red but not sure how to get to the app-header

  card-mod-root-yaml: |
    .: |
      @media screen and (max-width: 800px) {   
       .header {
          background-color: red !important;
        }
      }`
solar spruce
#

guys, I think I stumbled on a bug....

#

I use a subview with a single webpage card. The more I click on the website rendered, the more times I need to click the back arrow at the top to exit the subview. Basically the back arrow at the top of the subview just acts as a "browser back" function, rather than a "go back to the main dashboard from which I came"

tame dove
vivid trout
sonic rapids
fallen crag
#

If I want to look at the attributes of an arbitrary entity, is the only way in the developer tools? I know I could make a template sensor to display it, etc, but just to view them one-off, there's no way from the details popup or anything I'm missing, right...? that's always seemed weird to me

dark dirge
#

There are several ways, but the developer tools is the easiest and most comprehensive IMO. You can also hit "e", find the entity, and hit the cog

#

I suppose the answer to your question about there's no way from the details popup is "hit the cog"

normal umbra
#

Hi, where has the configuration gone to disable certain dashboards per user? I made a guest access for one of our friends and built them a slimmed down dashboard to control some lights when they're here. Now they can see every single entity in our HA and even gets thrown on the default Overview dashboard when logging in. Not exactly what I had in mind.

#

okay, found it. It's per view, not per dashboard.

vast crane
dark dirge
#

looks like it depends on the entity

#

there was an effort a few releases ago to redesign the more-info dialog and simplify it, which also involved moving or removing attributes

#

dev-tools is the comprehensive and authoritative source

#

for instance:

hasty kernel
fallen crag
dark dirge
#

I think they moved the attributes to the cog and then maybe moved some back?