Hue Motion Sensor turns on 3 lights when only need 1 turned on

Hue motion sensor turns on lounge bulbs, when I only want hall turned on.
I have a Hue motion sensor in the hall, so after sunset when I enter the house it turns on the hall light for a period of time, this works fine. BUT it also turns on the two lounge lamps, which I do not want it to do. (it is also automated to turn off after X time if no motion, and this works fine but leaves the lounge lamps on).
I have looked in Scene.yaml, automation.yaml also and no where does it show that it should be doing this.
Has anyone any ideas of where in HA this is programmed? So I can delete.
Here is my scene for Downstairs Hall code

>   name: Downstairs Hall Light
>   entities:
>     light.downstairs_hall:
>       supported_color_modes:
> 
>       - brightness
>       friendly_name: downstairs hall light
>       supported_features: 1
>       color_mode: brightness
>       brightness: 51
>       state: 'on'
>   icon: mdi:lightbulb
>   metadata:
>     light.downstairs_hall:
>       entity_only: true

Here is the automation code to turn it on.

> - id: '1660300337862'
>   alias: Downstairs Hall ON
>   description: ''
>   trigger:
>   - type: motion
>     platform: device
>     device_id: 730656c7e4d8c13dd94fa35af71f2fcc
>     entity_id: binary_sensor.hue_motion_sensor_1_motion
>     domain: binary_sensor
>   condition:
>   - condition: sun
>     after: sunset
>   action:
>   - service: scene.turn_on
>     target:
>       entity_id: scene.downstairs_hall_light
>     metadata: {}
>   mode: single

I have spent hours looking through HA config files but I can not see why it is doing this.

Have you tried looking at the light entities of the lights turning on that you don’t want turning on and checking the ‘related’ tab to see if they are listed in any automations, scripts and scenes etc?

Probably it’s because of your scene file. The easiest way to find out will be to disable this automation and create new one. But this time use entities only and see will it work as expected.

Thank You Thank You

1 Like