Is it possible to adjust a number in the data form from the lovelace UI?
You can create an input_number
entity add that to your UI. Then use a current state
node to get the value and feed that into your service call.
No need for a current_state node you can access the input_number directly from the call-service node.
{"fan_min_on_time": {{entity.input_number.fan_on_time}}}
1 Like
Cool didn’t know this works
Thank you! Very cool.