#Hue turns off instead of dimming

1 messages · Page 1 of 1 (latest)

inland wigeon
#

I have a Hue Infuse and I added an automation that dims the lights to 10% at 23:00.

It works fine when I test it by clicking the 3-dot menu and clicking run/execute. But when the automation actually runs at that time, it doesn't dim but turns off completely.

inland wigeon
#
service: light.turn_on
target:
  entity_id:
    - light.philips_915005997301_light
  area_id:
    - bedroom
data:
  transition: 1
  brightness_pct: 10
#
params:
  domain: light
  service: turn_on
  service_data:
    transition: 1
    brightness_pct: 10
    entity_id:
      - light.philips_915005997301_light
    area_id:
      - bedroom
  target:
    entity_id:
      - light.philips_915005997301_light
    area_id:
      - bedroom
running_script: false
#
id: '1756590260924'
alias: Dim lights at midnight
description: ''
trigger:
  - platform: time
    at: '23:00:00'
condition: []
action:
  - service: light.turn_on
    target:
      entity_id:
        - light.philips_915005997301_light
      area_id:
        - bedroom
    data:
      transition: 1
      brightness_pct: 10
mode: single