@rgc99 I’d like to thank you for this very valuable and well designed addon for HA. I’m just starting to implement it and for now trying to find the best approach for a compact UI.
In order to ajust watering time, I would prefer to use an input_number (instead of an input_datetime) because it is more compact. Then I’m wondering how to convert a number say for instance 15.0 to a time object that is 00:15. Thank you
EDIT
Was still searching internet and found the solution
{{ states('input_number.duree_arrosage')|int|multiply(60)|timestamp_custom('%H:%M', false) }}