Introduction: Counter Using Pushbutton | Tinker Cad

Once you've got a pushbutton working, you often want to do some action based on how many times the button is pushed. To do this, you need to know when the button changes state from off to on, and count how many times this change of state happens. This is called state change detection or edge detection. In this tutorial we learn how to check the state change, we send a message to the Serial Monitor with the relevant information and we count four state changes to turn on and off an LED.

Step 1: Components Required:

1. Arduino UNO

2. Breadboard

3. Pushbutton

4. Resistor

5. Jumper wires

Step 2: Circuit Diagram:

Connect three wires to the board. The first goes from one leg of the pushbutton through a pull-down resistor (here 10k ohm) to ground. The second goes from the corresponding leg of the pushbutton to the 5 volt supply. The third connects to a digital I/O pin (here pin 2) which reads the button's state.

When the pushbutton is open (unpressed) there is no connection between the two legs of the pushbutton, so the pin is connected to ground (through the pull-down resistor) and we read a LOW. When the button is closed (pressed), it makes a connection between its two legs, connecting the pin to voltage, so that we read a HIGH. (The pin is still connected to ground, but the resistor resists the flow of current, so the path of least resistance is to +5V.) If you disconnect the digital I/O pin from everything, the LED may blink erratically. This is because the input is "floating" - that is, not connected to either voltage or ground. It will more or less randomly return either HIGH or LOW. That's why you need a pull-down resistor in the circuit.

Step 3: Code:

For more interesting projects connect with me on:
Youtube: https://www.youtube.com/channel/UCTS10_CRYJhT-vb9...

Facebook page:https://www.facebook.com/techeor1/

Instagram: https://instagram.com/official_techeor?igshid=uc8...

int button=2;
int a,i=0;
void setup()
{
  Serial.begin(9600);
  pinMode(button, INPUT);
}
void loop()
 {  
 a = digitalRead(button); 
 if (a==1) 
 {  
  i=i+1;    
Serial.print(" Counter =");   
Serial.println(i);  
}  
else   
{   
 i=0;  
 } }