Last active
January 31, 2021 14:40
-
-
Save PatrickHallek/62208f82479bfa6e8cd30c7bd316bc7a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define inputPin 5 // PIR Sensor | |
#define outputPin 4 // Relay | |
#define switchPin 2 // Switch button state | |
int val = 0; | |
bool motionState = false; | |
int timeBuffer = 6; // in seconds | |
int measurementInterval = 100; // in milliseconds | |
int i = 0; | |
int switchState = 0; | |
void setup() { | |
Serial.begin(115200); | |
Serial.println("\n Starting"); | |
pinMode(inputPin, INPUT); | |
pinMode(switchPin, INPUT); | |
pinMode(outputPin, OUTPUT); | |
} | |
void motionLightLoop() { | |
val = digitalRead(inputPin); | |
if(val == true) { | |
while(i < timeBuffer * 1000 / measurementInterval){ | |
Serial.println("loop"); | |
digitalWrite(outputPin, HIGH); | |
val = digitalRead(inputPin); | |
if(val == true) { | |
Serial.println("reset"); | |
digitalWrite(outputPin, HIGH); | |
i = 0; | |
} | |
delay(measurementInterval); | |
i++; | |
} | |
} | |
Serial.println("End"); | |
digitalWrite(outputPin, LOW); | |
i = 0; | |
} | |
void loop() { | |
switchState = digitalRead(switchPin); | |
if(switchState == true) { | |
motionLightLoop(); | |
} else { | |
digitalWrite(outputPin, HIGH); | |
} | |
delay(measurementInterval); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment