Hello to all,
I am seeking for some help with an automation i try to build in the LED strip of my aquarium. My intention is to have the lights slowly brighten at 3.30 PM for 30 min and slowly dimming at 11:30 for 30 mins.
The controller i use is a cheap on purchased from Amazon (link below if more details are required) which i am able to control with flux_led: https://www.amazon.de/gp/product/B08T64NR4G/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&th=1
I built the following automation:
alias: Aquarium Wake up
description: ''
trigger:
- platform: time
at: '15:30:00'
condition: []
action:
- service: light.turn_on
target:
entity_id: light.aquarium_night_light
data:
transition: 1800
brightness_step_pct: 6
mode: single
However, when i run the automation, the light turns on at 10% brightness and stays there indefinitely.
Then, for the dim automation i tried something similar:
alias: Aquarium sleep
description: ''
trigger:
- platform: time
at: '00:00:00'
condition: []
action:
- service: light.turn_off
target:
entity_id: light.aquarium_night_light
data:
transition: 1800
brightness_step_pct: 6
mode: single
In this case, again the lights remain on and seems the transition is not working.
I have the same lights connected with Google Home via Magic Home Pro and when i say “Hey Google, sleep/wake the aquarium night light” it works on both cases.
What am i doing wrong in my automations? Also, could this be possible with scenes? I have a different scene that should start at 3:30 PM and different at 12:00 AM.
Thank you very much
Kind Regards
M