Newbie trouble with Google Home and All lights group

I have a problem I dont really know how to solve. I use Google Home via emulated hue and have some Yeelights and a broadlink for turing tv on/off via ir.

Problem is that the ir switch seem to go into the “all lights” So when I say for example “Okey google, turn off all lights” then it will also trigger the broadlink and turn on the tv if its on and off if its on…

I still want to be able to say Okey google turn tv power on/off But I dont want it to be triggered by “all lights”

Any clue for a beginner?

HASS creates automatically an couple of groups that are called group.all_xxxx. Look into the dev tools under “<>”.
In group.all_lights there are sometimes more than just lights but also switches etc…

To avoid these surprises I ended up restricting emulated_hue with what is exposed by:

emulated_hue:
  type: google_home
  host_ip: 192.168.2.192
  listen_port: 80
  off_maps_to_on_domains:
    - script
    - scene  
  expose_by_default: false
  exposed_domains:
    - light
    - switch
    - group

and controlling via customize what I want to expose:

 light.cupboard_left:
   emulated_hue: true
 light.cupboard_right:
   emulated_hue: true   
 group.light_kitchen:
   emulated_hue: true
   emulated_hue_name: "Kitchen lights"

This also makes it easier to manage the entries in GH as you only see what you want to see

Alright, thanks! I will try this. What does this part mean?

off_maps_to_on_domains:
- script
- scene

scripts and scenes cannot be turned off … only turned on