having not used 2 groups in my Lovelace frontend before (only used them for backend logic) Ive now added them to a card, and am surprised to see them having a toggle, and not showing the state. Is this to be expected?
lovelace:
- type: entities
title: At home
entities:
- entity: binary_sensor.family_home
secondary_info: last-changed
- entity: sensor.family_home
secondary_info: last-changed
- type: divider
- entity: group.family
secondary_info: last-changed
- entity: group.family_home
secondary_info: last-changed
- type: divider
- entity: binary_sensor.daughters_home
secondary_info: last-changed
- entity: sensor.daughters_home
secondary_info: last-changed
- type: divider
- entity: group.daughters
secondary_info: last-changed
- entity: group.daughters_home
secondary_info: last-changed
the 2 groups are defined as:
family_home:
name: Familie Home
icon: mdi:home-heart
entities:
- group.daughter_1
- group.daughter_2
- group.daughter_3
- group.daughter_4
- group.she
- group.me
and
daughters_home:
name: Daughters Home
icon: mdi:human-child
entities:
- group.daughter_1
- group.daughter_2
- group.daughter_3
- group.daughter_4
(… edited the actual names )
of course these groups exist of yet multiple entities again)
why the toggle, because when toggling an error is displayed it cant find a service device_tracker/turn_on, which is correct of course. and, though the toggle does change position, the entity doesnt change state.
so, I am somewhat confused…