--- title: "Light Group" description: "Instructions for how to setup light groups within Home Assistant." ha_category: - Light ha_release: 0.65 ha_iot_class: Local Push ha_quality_scale: internal ha_domain: group --- The group light platform lets you combine multiple lights into one entity. All child lights of a light group can still be used as usual, but controlling the state of the grouped light will forward the command to each child light. To enable this platform in your installation, add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry light: - platform: group name: Kitchen Lights entities: - light.kitchen_ceiling_lights - light.kitchen_under_cabinet_lights - light.kitchen_spot_lights - light.pendant_lights ``` {% configuration %} name: description: The name of the light group. Defaults to "Light Group". required: false type: string entities: description: A list of entities to be included in the light group. required: true type: [string, list] {% endconfiguration %}
Example of the light group "Kitchen Lights".