Trying to create group tab with multiple states cards in each group

Example:
I would light to have a “Lights” tab with all of my rooms on individual cards with a switch to control for each light and all lights at one time. Then I would like to have a Temperature tab with each of my thermostat on individual cards. Then I would like a Tracker tab with a card with our phone trackers.

Here are some of my lights:
LR_Lights:
name: Lights
entities:
- light.couch_1
- light.couch_2
- light.couch_3
- light.couch_4
Living Room:
view: yes
entities:
- group.lr_lights
Office_Lights:
name: Lights
entities:
- light.office
- light.olight_1
- light.olight_2
- light.omain
Office:
view: yes
entities:
- group.office_lights
Kitchen_Lights:
name: Lights
entities:
- light.klight
- light.klight1
- light.klight2
- light.klight3
- light.klight4
- light.klight5
Kitchen:
view: yes
entities:
- group.kitchen_lights

Tracker
Group:
name: Main
view: yes
entities:
- device_tracker.dereks_phone
- device_tracker.melissas_phone

Any help you can give would be appreciated.

Derek

So you need to create a group called all_lights with view: yes and add all your group lights to it as - group.office_lights etc.

Something like this:
group:
view: yes
entities:
- light.klight
- light.klight1
- light.klight2
- light.klight3
- light.klight4
- light.klight5
- light.office
- light.olight_1
- light.olight_2
- light.omain
- light.couch_1
- light.couch_2
- light.couch_3
- light.couch_4
- light.panio
Office:
view: yes
entities:
- group.Office_lights

Like this…

lights_grp:
  name: All_Lights
  view: yes
  entities:
    - group.halllights
    - group.bedroomlights
    - group.kitchenlights
    - group.livingroomlights
    - switch.bathroom_light
1 Like

Thanks for all of your help!

1 Like