Can someone help me with adding 10 seconds to my sensor? I’m using this to display an Alexa timer but although I expected a discrepancy I wasn’t expecting to play trial and error for 2 hours.
- platform: template
sensors:
kitchen_timer:
friendly_name: "Kitchen Timer"
value_template: >
{% if states('sensor.kitchen_dot_next_timer') != 'unavailable' %}
{{ ((as_timestamp(states('sensor.kitchen_dot_next_timer')) - as_timestamp(now()))/60) }}
{% else %}
0
{% endif %}
unit_of_measurement: Minutes
Thank you!