I am trying to add a count down timer for my washer and dryer, but it seems a bit more complicated from other configurations I have seen. Here is what I am shooting for
In the template under secondary information I would like there to be a count down from when the washer and dryer start. I am unsure how to add it because the integration displays the timer as a set time such as ‘2022-11-28T02:04:57+00:00’ as seen here
Images in comments because I am a new user…
the “state” is the end time after the washer and dryer start. Under the integration it basically displays what I am trying to add to the template card on the Home Screen. Like so…
In the secondary information I am just trying to get it to display “washer done 'In 13 minutes” So I have
{% set state=states('switch.washer') %}
{% if state=='on' %}
Washer done in {{ 'something that has countdown to completed time' }}
{% elif state=='off' %}
Off
{% endif %}
Just an example what I am thinking.I hope this was enough information to get some help.