1int relay = 8;
2volatile byte relayState = LOW;
3
4int PIRInterrupt = 2;
5
6
7int LDRPin = A0;
8
9int LDRReading;
10
11int LDRThreshold = 300;
12
13
14long lastDebounceTime = 0;
15long debounceDelay = 10000;
16
17void setup() {
18
19 pinMode(relay, OUTPUT);
20 digitalWrite(relay, HIGH);
21
22 pinMode(PIRInterrupt, INPUT);
23
24 attachInterrupt(digitalPinToInterrupt(PIRInterrupt), detectMotion, RISING);
25
26 Serial.begin(9600);
27}
28
29void loop() {
30
31 if((millis() - lastDebounceTime) > debounceDelay && relayState == HIGH){
32 digitalWrite(relay, HIGH);
33 relayState = LOW;
34 Serial.println("OFF");
35 }
36 delay(50);
37}
38
39void detectMotion() {
40 Serial.println("Motion");
41 LDRReading = analogRead(LDRPin);
42
43 if(LDRReading > LDRThreshold){
44 if(relayState == LOW){
45 digitalWrite(relay, LOW);
46 }
47 relayState = HIGH;
48 Serial.println("ON");
49 lastDebounceTime = millis();
50 }
51}
husseinashakir
7 months ago
Plz, The cct & code were implemented but did not drive the concept of Night Security Light. it is jus operate for the initial time when connected to the main source. I need help if someone could do it much appreciated.