A button that, after being pressed, reactivates after a few seconds

Hi guys, maybe from the title you have already guessed my desire.
I need to make a button that, after being pressed, remains deactivated (so it no longer performs the function of a button) and then becomes active again after a few seconds. Can anyone show me the block diagram? Thank you

Use a clock timer.

Set the timer interval for the length of time you want the button deactivated, in milliseconds
On button press, start the clock, set button enabled to false
In the clock timer event, set button enabled to true, set clock enabled to false

image

Thank you so much
New edit: THANK YOU SO MUCH! IT WORK PERFECTLY

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.