I’ve finally gotten around to creating some groups and I’m running into an issue getting them to display in Lovelace. When I add them to an entity card the status shows as “Unkown”
My Configuration.yaml has
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
switch: !include switches.yaml
light: !include lights.yaml
And my Groups looks like:
Garage Motion:
entities:
- binary_sensor.garage_motion
- binary_sensor.garage_motion_2
Living Room Lamps:
entities:
- switch.living_room_lamp_1
- switch.living_room_lamp_2
It seems like the logic of motion sensor group works (I have them tied to a blueprint to shut off lights if no motion) but both the switches and motion sensor group will not display a status in Lovelace. I’ve tried adding the entities to lights.yaml and switches.yaml with no success. I’m sure this is simple but I’ve done a lot of searching and can’t seem to resolve it. Thanks for any help!