I am trying to add to my EV page and have it display the estimated time when the charge will be complete.
I have the time of the last update, and minutes until complete. I would like to add the times together and display the result as DATE HH:MM.
The idea is to add [sensor.2026_ioniq_9_last_updated_at] to [sensor.2026_ioniq_9_estimated_charge_duration] /1440 and show the formatted date as the result in a card.
I got it figured. Python is weird, but I guess that's what you get with a safety net.
Time complete is {{as_datetime((states('sensor.2026_ioniq_9_last_updated_at'))) + timedelta(minutes = int(states('sensor.2026_ioniq_9_estimated_charge_duration')))}}