Automation error, it triggers it but nothing happens. Philips hue

Hi Guys, i have since a couple of days trouble with my HA automation. I have a few lamps i normaly trigger with a (light) lx sensor outside the house. this normaly works just fine. The last couple of days it just triggers the automation but the light dont go on . No error in the logs nothing.

Is there someting i can do to solve this ?

I use only Philips hue lights and sensors.

Below is a list of the things i’ve tried

  • see if the lamps getting power (230V)
  • if the switch is on/off
  • update HA
  • re-written my automation
  • update all my Philips hue lights
  • unplugged the sensor and reconnect

The yaml for the automation:

alias: Woonkamer licht aan
description: Woonkamer lichten aan doen wanneer het donker word
trigger:
  - type: illuminance
    platform: device
    device_id: 0449453644e897e8698aa72fbe88a9f5
    entity_id: sensor.hue_outdoor_motion_sensor_1_illuminance
    domain: sensor
    below: 100
condition:
  - condition: time
    before: '23:55'
    after: '16:00'
    weekday:
      - mon
      - tue
      - wed
      - thu
      - fri
      - sat
      - sun
action:
  - type: turn_on
    device_id: 2ffa8926bdfbca1b75438cea89b3689e
    entity_id: light.hue_filament_bulb_2
    domain: light
    brightness_pct: 40
  - type: turn_on
    device_id: 6bbf8ebb16ff306cacf3f0fcb86c721a
    entity_id: light.hue_filament_bulb_1
    domain: light
    brightness_pct: 40
mode: single