Is it possible to reset "timer.setTimeout"

@Gunner
@Costas
Hello
I need to reset my timer when a new remote button is pressed.
is that possible ?

" timer.reset(); "

timer.setTimeout(3000L, RF_Remote);// Desactivate RF Remote button for 3 seconds

I tried this link
https://playground.arduino.cc/Code/SimpleTimer#Functions

but still confused.

Use delete and recreate.

@Costas

Thanks Costas

working great , thanks a lot.

   timer.deleteTimer(T3);
   T3 = timer.setTimeout(1000L, RF_Remote);// Desactivate RF Remote button for 1sec.

This was helpful three years later to me. Thanks, both of you.