Not condition Date and month

How do I make a NOT condition on ex. 16 october every year.

I Have a sensor.month and sensor.date in HA.

Template ?

You don’t need sensors for the date, you can just use now() in your templates. Something like:

{{ not (now().month == 10 and now().day ==16) }}
1 Like