Sie sind auf Seite 1von 3

PIR-sensor-based Electronic Device Control with

Ultra-low Standby Power Consumption


Date: 21.8.17
Report By:
P.SRI SRINIVASAN - 2014504536

PREVIOUS CODE FOR PIR


int led = 13; // the pin that the LED is atteched to
int sensor = 2; // the pin that the sensor is atteched to
int state = LOW; // by default, no motion detected
int val = 0; // variable to store the sensor status
(value)
void setup() {
pinMode(led, OUTPUT); // initalize LED as an output
pinMode(sensor, INPUT); // initialize sensor as an input
Serial.begin(9600); // initialize serial
}
void loop(){
val = digitalRead(sensor); // read sensor value
if (val == HIGH) { // check if the sensor is HIGH
digitalWrite(led, HIGH); // turn LED ON
delay(100); // delay 100 milliseconds
if (state == LOW) {
Serial.println("Motion detected!");
state = HIGH; // update variable state to HIGH
}
}
else {
digitalWrite(led, LOW); // turn LED OFF
delay(200); // delay 200 milliseconds
if (state == HIGH){
Serial.println("Motion stopped!");
state = LOW;
}
}
}
DISADVANTAGE
I requires continuous human motion to maintain the light in ON state
SOLUTION
int led = 13; // the pin that the LED is atteched to
int sensor = 2; // the pin that the sensor is atteched to
void setup() {
pinMode(led, OUTPUT); // initalize LED as an output
pinMode(sensor, INPUT); // initialize sensor as an input
Serial.begin(9600); // initialize serial
}
void loop(){

if (digitalRead(sensor) == HIGH) {
digitalWrite(led, HIGH); // turn LED ON
Serial.println("Motion detected!");
delay1(9600); // delay 1 minute
}
else {
digitalWrite(led, LOW); // turn LED OFF
delay(200); // delay 200 milliseconds
Serial.println("Motion stopped!");
}
}
void delay1(int x)
{
int b=x;
repeat:
int flag=0;
for(x=b;x>0;x--)
{
Serial.println(x);
if(digitalRead(sensor)==HIGH)
{
flag=1;
}
}
if(flag==1)
{
Serial.println("Motion detected during high state!");
goto repeat;
}
}

Das könnte Ihnen auch gefallen