Ask Your Question
4

I'm attempting to eliminate bouncing in a button using c++ on an atmega 328p microcontroller, but I am having no success.

asked 2023-06-26 22:12:33 +0000

woof gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-06-26 22:35:02 +0000

huitzilopochtli gravatar image

There are several techniques you can use to eliminate bouncing in a button using C++ on an Atmega 328p microcontroller:

  1. Debouncing in software: One way to eliminate button bounce is to use software debouncing. You can do this by adding a delay after the button is pressed, checking the button state again after that delay, and only registering the button press if the state is still high.

  2. Hardware debouncing: Another way to eliminate button bounce is to use a hardware debouncing circuit. This circuit can be as simple as a capacitor and resistor combination connected across the button terminals.

  3. Using interrupts: You can also use interrupts to remove bouncing in a button. You can connect the button to an interrupt input pin on the microcontroller, and configure the microcontroller to trigger an interrupt when the button is pressed. When the interrupt occurs, the microcontroller can read the button state and execute the corresponding action.

Depending on the application and the circuitry involved, one of these techniques can effectively eliminate bouncing in a button.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-26 22:12:33 +0000

Seen: 11 times

Last updated: Jun 26 '23