Hello
I have a timer (helper) and I want to change his attribute (duration) with an input value.
For example, the timer is 30min (fix for now) and the input value is 45. How can I change the attribute of the timer?
Hello
I have a timer (helper) and I want to change his attribute (duration) with an input value.
For example, the timer is 30min (fix for now) and the input value is 45. How can I change the attribute of the timer?
‘action: timer.start
target: {}
data:
entity_id: timer.wembley_bewasserung
duration: {{states(‘input_select.zeit_drop’)}}’
Thanks for your help, but I need this version. A variable duration via drop select and put this value into the duration state_addr of the timer.
action: timer.start
target:
entity_id: timer.wembley_bewasserung
data:
duration: "{{ states('input_select.zeit_drop') }}"
Nice. It works.
THX.