/*
  Button
  Turns on and off a light emitting diode(LED) connected to digital pin 13,
  when pressing a pushbutton attached to pin 2.
  The circuit:
  - LED attached from pin 13 to ground
  - pushbutton attached to pin 2 from +5V
  - 10K resistor attached to pin 2 from ground
  - Note: on most Arduinos there is already an LED on the board
    attached to pin 13.
  created 2005
  by DojoDave <http://www.0j0.org>
  modified 30 Aug 2011
  by Tom Igoe
  This example code is in the public domain.
  http://www.arduino.cc/en/Tutorial/Button
*/
const int buttonPin = 2;    
const int ledPin =  13;      // the number of the LED pin
const int ledPin1 =  12; 
int buttonState = 0;         // variable for reading the pushbutton status 
int call_count=0;
void setup() {
 
 
  pinMode(ledPin, OUTPUT);
  pinMode(ledPin1, OUTPUT);
  pinMode(buttonPin, INPUT_PULLUP);
 
}
void loop() {
  buttonState = digitalRead(buttonPin);
  if (buttonState == LOW) {
   call_count++ ;
    if (call_count ==1)
     {
    digitalWrite(ledPin, HIGH);
    delay(5000);
    digitalWrite(ledPin, LOW);
     }
     else if(call_count ==2)
     {
    digitalWrite(ledPin1, HIGH);
    delay(5000);
    digitalWrite(ledPin1, LOW);
    call_count=0;
      }
  }
}