Button does not work
The button doesn't work as expected. I used the digitalRead() function to read the state of the button, but the button state is not changed as expected when press and release button. I press the button once, but Arduino code detects several presses. Why?
Answer
Beginners usually get trouble when getting started with a button, pushbutton, switch using digitalRead() function.
To avoid this, beginners SHOULD pay attention to the following issues:
1. Floating input problem:
- Symptom: the reading value from the input pin is not matched with the button's pressing state.
- Cause: input pin is NOT used pull-up or pull-down resistor
- Solution: Use pull-up or pull-down resistor. See Arduino Button (with pull-up/pull-down)
2. Chattering phenomenon
It should be considered in only some application that needs to detect exactly number of the pressing.
- Symptom: Button is pressed once, but Arduino code detects several times.
- Cause: Due to mechanical and physical issues, the state of the button (or switch) is quickly toggled between LOW and HIGH several times
- Solution: Debounce. See Arduino - Button Debounce
Buy Arduino and Button
1 × Arduino UNO Buy on Amazon | |
1 × USB 2.0 cable type A/B Buy on Amazon | |
1 × Button Buy on Amazon | |
1 × Breadboard Buy on Amazon | |
1 × Jumper Wires Buy on Amazon |
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.