Gh718C Pir Human Body Infrared Sensor Module
Rs. 430.00 Rs. 529.00
- Product Code: SEN-PIR
- SKU -
- Availability: In Stock
- Price in reward points: 5
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-Complete PIR Motion Sensor module in tiny pcb module. Up to 7 meter detection range.
-On board regulator allows up to 20VDC input supply.
-3.3V logic output that can be configured as normally high or normally low
SPECIFICATIONS: | |
working voltage | DC 4.5~20V |
static current | 50uA |
level output | high 3.3V and low 0V |
hold time | 3-900 seconds adjustable |
sensor angle | 110 degree |
induction distance | 3M |
OVERVIEW: | |
Power Input | 4.5~20VDC |
Detection Range | 7 Meters |
Sentry Angle | 110 Degrees |
Output Type | Digital High (When Motion Detected) |
PACKAGE INCLUDES:
1 PCS x Gh718C Pir Human Body Infrared Sensor Module
//SOURCE CODE TAKEN FROM BELOW LINK
//NOTE BELOW CODE IS FOR PIR ANOTHER MODEL
//https://create.arduino.cc/projecthub/electropeak/pir-motion-sensor-how-to-use-pirs-w-arduino-raspberry-pi-18d7fa
/*
PIR HCSR501
modified on 5 Feb 2019
by Saeed Hosseini @ ElectroPeak
https://electropeak.com/learn/guides/
*/
int ledPin = 13; // LED
int pirPin = 2; // PIR Out pin
int pirStat = 0; // PIR status
void setup() {
pinMode(ledPin, OUTPUT);
pinMode(pirPin, INPUT);
Serial.begin(9600);
}
void loop(){
pirStat = digitalRead(pirPin);
if (pirStat == HIGH) { // if motion detected
digitalWrite(ledPin, HIGH); // turn LED ON
Serial.println("Hey I got you!!!");
}
else {
digitalWrite(ledPin, LOW); // turn LED OFF if we have no motion
}
}
15 days