#automation issue

1 messages · Page 1 of 1 (latest)

sick patio
#

so uhh i don't know why this is happening. so for context i have an automation that turns up my light every morning (except for weekends) by 2% every 1 minute, and it keeps stopping at 41%. anyone know why? also my bulb is the Cync CLEDA199CD1. if y'all need a screenshot of the automation then I'll gladly do so.

oh yeah also if this helps im running it in docker on artix linux

robust ledge
sick patio
#
description: A test automation.
triggers:
  - trigger: time
    at: "08:00:00"
    weekday:
      - mon
      - tue
      - wed
      - thu
      - fri
conditions: []
actions:
  - action: light.turn_on
    metadata: {}
    target:
      entity_id: light.bits_bedroom_lamp
    data:
      brightness_pct: 1
      color_temp_kelvin: 2000
  - repeat:
      until:
        - condition: numeric_state
          entity_id: light.bits_bedroom_lamp
          attribute: brightness
          above: 99
      sequence:
        - action: light.turn_on
          metadata: {}
          target:
            entity_id: light.bits_bedroom_lamp
          data:
            color_temp_kelvin: 2000
            brightness_step_pct: 2
        - delay:
            hours: 0
            minutes: 0
            seconds: 59
            milliseconds: 0
mode: single ```
robust ledge
#

brightness is not 0-100 it is 0-255.

#

change 99 to 254

#

It is a binary byte not a percentage.

#

It is an easy mistake to make.

sick patio
robust ledge