Hi everybody,
I have a main tab in my lovelace that displays each room, and for each room all switches, lights, and entities. Currently, this is done via glances
cards. However, it is kinda cluttered and not very intuitive.
What I’d like to do is something like this (trying to type out the layout of the card)
<room name>
<open?> (window) (door)
<temperature> <heater_sat_temperature>(input_slider) <measured_temperature>(sensor)
<lights> (light1) (light2) (light3) (light4)
<switches> (switch1) (switch2) (switch3) (...) (switch9)
I have tried doing this with multiple-entity-row
, however… if I understand correctly, it can “only” display one thing on the left, then two things (primary and secondary) next to it. See here.
I would like to, however, display as many lights/switches/entities as there are, ideally even with indentation, for example
(...)
<lights> (light1) (light2) (light3)
(empty space) (light4) (light5) (light6)
<switches> (switch1) (switch2) (switch3)
(empty space) (switch4) (switch5) (switch6)
(...)
I use Home Assistant mobile 99% of the time (well, now that there is an android app, I actually switched to that!), so it’d be nice to use as little space as possible while still having a nice overview of all entities I want to read / control.
Here is an example of my current office card. It looks and works fine, but I don’t like it for some reason and it’d be nice to make it feel more intuitively.
I like the way the entities are set up as glances (instead of switch items for each switch) that I can toggle by clicking; I just don’t like how they are arranged.
Thank you for your ideas