Skip to main content

PIR Senesor / Motion Sensor using Arduino 


Code

/*
PIR SENSOR / MOTION SENSOR
https://electronicassist.blogspot.in/
ARJUN ARANGIL
9444868542
*/
int ledPin   = 13;                 // choose the pin for the LED
int inputPin = 2;                  // choose the input pin (for PIR sensor)
int leda     = 12;                 // choose the pin for the LED
int ledb     = 11;                 // choose the pin for the LED
int pirState = LOW;                // we start, assuming no motion detected
int val      = 0;                  // variable for reading the pin status

void setup() 
{
  pinMode(ledPin, OUTPUT);         // declare LED as output
  pinMode(leda, OUTPUT);           // declare LED as output
  pinMode(ledb, OUTPUT);           // declare LED as output
  pinMode(inputPin, INPUT);        // declare sensor as input  
}

void loop()
{
  val = digitalRead(inputPin);     // read input value
  if (val == HIGH)                 // check if the input is HIGH
  
    { 
      digitalWrite(ledPin, HIGH);  // turn LED ON
      delay(500);                  // .5sec delay
      digitalWrite(leda, HIGH);    // turn LED ON
      delay(500);                  // .5sec delay
      digitalWrite(ledb, HIGH);    // turn LED ON
      }
      
  else
     {
       digitalWrite(ledPin, LOW);  // turn LED OFF
       digitalWrite(leda, LOW);    // turn LED OFF
       digitalWrite(ledb, LOW);    // turn LED OFF
       }

}

Comments

Popular posts from this blog

Ultrasonic sensor using Arduino Code /*     CAR PARKING SENSOR    https://electronicassit.blogspot.in    ARJUN ARANGIL    9444868542 */ // Define pins for ultrasonic and buzzer int const trigPin = 5; int const echoPin = 6; int const buzzPin = 12; void setup() { pinMode(trigPin, OUTPUT); // trig pin will have pulses output pinMode(echoPin, INPUT); // echo pin should be input to get pulse width pinMode(buzzPin, OUTPUT); // buzz pin is output to control buzzering } void loop() { // Duration will be the input pulse width and distance will be the distance to the obstacle in centimeters int duration, distance; // Output pulse with 1ms width on trigPin digitalWrite(trigPin, HIGH); delay(1); digitalWrite(trigPin, LOW); // Measure the pulse input in echo pin duration = pulseIn(echoPin, HIGH); // Distance is half the duration devided by 29.1 (from data...
#Lesson 01- Blinking LED                 The simplest thing you can do with a Arduino to blinks the LED Hardware Required   -   Arduino Board   -  LED   -  220 Ω Resistor   -  Jumper wire   -  Bread board Circuit       The LED is connected to Arduino digital pins and 220Ω resistor is connected series in between Arduino and LED. The resistor which limits the flow of currents.      Connect one end of the resistor to the digital pin correspondent to the LED. Connect the long leg of the LED (+ve leg called as anode) to the other end of the resistor and connect the short leg of the LED (-ve leg called as cathode) to the Gnd Code After you build the circuit plug the Arduino into your computer, start the Arduino software(IDE) and enter the code given below /*   Blink   https://electronicassit.blogspot.in/   9444868542 *...