Need help with Blynk simpletimer

I’d start by reading the SimpleTimer documentation.

https://playground.arduino.cc/Code/SimpleTimer/

To be able to delete or disable a timer you need to know it’s ID, so when you initiate a timer , instead of this:

timer.setTimeout(4 * 60 * 60, turn_off_SSR)

you’d do this:

SSR_timeout_timer_ID = timer.setTimeout(4 * 60 * 60, turn_off_SSR)

note that SSR_timeout_timer_ID needs to be declared as a global integer variable so that you can use it to disable the timer from anywhere in your sketch.

You can then do things like:

timer.disable(SSR_timeout_timer_ID)

or

timer.delete(SSR_timeout_timer_ID)

Does this help?

EDITED TO ADD…

I forgot to mention this bug…

Pete.