Problem with light group

I am completely new to home assistant and I am in the process of porting my configuration form openhab. I try to make a group for all my HUE lights. The groups from hue are imported and I can use them as identities, however, a group with all lights is missing.

So I followed the manual and added the following to my configuration.yaml
Light:

  • platform: group
    name: AlleVerlichting
    entities:
    • light.woonkamer
    • light.keuken
    • light.slaapkamer
    • light.gang
    • light.kantoor

Now I get the error Setup failed for Light: Integration not found.

I also try to add it to groups.yaml but that also generates an error. I was able to create a group that does not give an error but that does not show up in the interface, I have the idea that I am missing something small here. Any help is appreciated.

You want a light group

1 Like

can you post your configuration?

1 Like
# Office Light Group
light:
  - platform: group
    name: Office Light Group
    entities:
      - light.office
      - light.desk
1 Like

Light: needs to be lowercase like this light:

2 Likes

Yeah, it was something small. Like a capital L.

Thanks for the fast response. Problem fixed.