How to make button press input
I know how to make buttons be used as input, bit the input seems to only stay on when I'm holding the button
-
The most straightforward way is to just add a counter. So a button press adds one to the counter and keeps a sustained "on" signal. Then you can wire whatever toggles off the button to the counter reset and you're good to go again.
-
Thanks for this, this was exactly what I was looking for.
-
Additionally, if you only want a super quick pulse when you press a button, rather than a continuous signal that a full counter would give, you can wire the Counter to immediately reset itself.
Please sign in to leave a comment.