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.