Good evening,
I googled already but failed and must admit that this is probably a pretty stupid problem.
My aim: turning on my outdoor Hue lights when it’s dark, leveraging the light sensor/entity of the Hue motion sensor. However it’s not triggering the automation.
Do you may see what is causing the issue? The entity value UoM should be lux. If I look up the motion sensor/entity I can always see the value which looks fine.
Many thanks and I apologize probably for raising a beginner problem.
My automation code:
alias: Licht Hauswand
description: Schaltet die Hue Außenleuchten bei Dunkelheit ein
triggers:
- trigger: numeric_state
entity_id:
- sensor.bewegungsmelder_strasse_beleuchtungsstarke
below: 50
attribute: light_level
conditions: []
actions:
- type: turn_on
device_id: 8fc60ba599bb2c87eb106341e9dbed2e
entity_id: 842d0c2298adc7200c9143e0b732071c
domain: light
- type: turn_on
device_id: 8eeef62d2493ac7f6b3c8b7741902d1b
entity_id: 5d5412d4a343869cc0ad133240492f2a
domain: light
- condition: numeric_state
entity_id: sensor.bewegungsmelder_strasse_beleuchtungsstarke
above: 50
attribute: light_level
- type: turn_off
device_id: 8fc60ba599bb2c87eb106341e9dbed2e
entity_id: 842d0c2298adc7200c9143e0b732071c
domain: light
- type: turn_off
device_id: 8eeef62d2493ac7f6b3c8b7741902d1b
entity_id: 5d5412d4a343869cc0ad133240492f2a
domain: light
mode: single