// Task :- When the motion sensor detect something the LED should be blink (Turn ON)
// Input :- PIR Motion Sensor
// Output :- LED
int pin_LED=13; // Initialize output pin for LED
int pin_PIR=2; // Initialize input pin for PIR Motion Sensor
int state_PIR=LOW; // Initially PIR Motion Sensor is in the LOW mode. Nothing detected yet.
void setup() {
// put your setup code here, to run once:
pinMode(pin_PIR, INPUT); // Declare PIR Motion Sensor as Input
pinMode(pin_LED, OUTPUT); // Declare LED as Output
Serial.begin(9600); // Define board rate
}
void loop() {
// put your main code here, to run repeatedly:
// read the state of the PIR Motion Sensor value:
state_PIR = digitalRead(pin_PIR);
// check if the PIR sensor detect something.
//if detected the state_PIR is HIGH:
if (state_PIR == HIGH) {
digitalWrite(pin_LED, HIGH); // turn LED on
Serial.println("Mortion Detected !!!");
delay(5000);
Serial.println("Mortion End !!!");
digitalWrite(pin_LED, LOW);
delay(2000);
} else {
digitalWrite(pin_LED, LOW); // turn LED off
Serial.println("No Mortions Detected........");
delay(1000);
}
}