So I have a script that does the following.
Turn on Porch Lights at 1% brightness.
Then proceeds to run this next sequence 99 times: wait 10s, add +1 % brightness.
That -should- end at 100% correct? 1 + (99 x 1) = 100.
However, I noticed that my lights stopped at 84% brightness. The script trace seems to show only 20 loops, which cannot possibly be correct, because that'd put me at only 21% Brightness..
Here is the script:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 1
target:
area_id: porch
- repeat:
count: 99
sequence:
- delay:
hours: 0
minutes: 0
seconds: 10
milliseconds: 0
- action: light.turn_on
metadata: {}
data:
brightness_step_pct: 1
target:
area_id: porch
alias: Porch Lights Fade On
description: ""
-> Actions