Free shipping on orders over Rs 10000.00 | Support: +977-9856066112
PIR-sensor
Motion Sensors SKU: PIR-sensor

PIR-sensor

Rs271.00 Rs300.00 Save 9%

The PIR (Passive Infrared) Sensor detects infrared radiation changes emitted by moving objects, typically humans or animals.

In Stock (10 available)
Genuine
Fast Delivery
Easy Returns

πŸ‘οΈ PIR Motion Sensor Module
πŸ“– Product Description

The PIR (Passive Infrared) Sensor detects infrared radiation changes emitted by moving objects, typically humans or animals.

It is a passive sensor (doesn’t emit IR, only senses it) and outputs a digital HIGH/LOW signal when motion is detected.

Commonly used in:

Motion-activated lights

Home security alarms

Smart home automation

Robotics (object detection)

Energy-saving systems

The module is easy to interface with microcontrollers like Arduino, ESP32, STM32, and Raspberry Pi.

✨ Key Features

βœ… Detects human/animal movement
βœ… Passive infrared (no emission)
βœ… Adjustable sensitivity
βœ… Adjustable time delay for output
βœ… Digital output (HIGH = motion detected)
βœ… Low power consumption (~50 Β΅A idle)
βœ… Operating voltage: 5V DC (typical)
βœ… Compact and lightweight

πŸ“Š Technical Specifications
Parameter Typical Value
Operating Voltage 3.3 – 5V DC
Output Type Digital (HIGH/LOW)
Detection Range 3 – 7 meters (typical)
Detection Angle 110Β° – 120Β°
Output Duration Adjustable: 0.5 – 5 seconds (some modules: 5 – 200s)
Trigger Motion detected β†’ HIGH
Current ~50 Β΅A idle / 10 mA active
Operating Temperature βˆ’15Β°C to +70Β°C
πŸ“ Pin Configuration (Common 3-pin module)
Pin Function
VCC 3.3V – 5V power supply
GND Ground
OUT Digital signal output (HIGH = motion detected)

Some advanced modules include sensitivity and time adjustment potentiometers:

SENS β†’ adjust detection distance

TIME β†’ adjust output HIGH duration

πŸ”Œ Basic Wiring (Arduino Example)
PIR Pin Arduino Pin
VCC 5V
GND GND
OUT Digital pin (e.g., D2)
Example Code Snippet
int pirPin = 2;
int ledPin = 13;

void setup() {
pinMode(pirPin, INPUT);
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
}

void loop() {
int motion = digitalRead(pirPin);
if (motion == HIGH) {
digitalWrite(ledPin, HIGH);
Serial.println("Motion detected!");
} else {
digitalWrite(ledPin, LOW);
}
}

πŸ”§ Practical Notes

Warm-up time: ~30 seconds after power-on

Detection is PIR only: doesn’t detect stationary objects

Adjust angle and distance using module potentiometers

Avoid placing near heat sources (sunlight, heaters)

πŸ“¦ Applications

Perfect for:

🏠 Home security
πŸ’‘ Automatic lighting
πŸ€– Robotics motion sensing
🏒 Office energy-saving systems
🎯 Smart automation triggers

⭐ Quick Summary

πŸ‘‰ Type: Passive Infrared Motion Sensor
πŸ‘‰ Voltage: 3.3–5V DC
πŸ‘‰ Output: Digital HIGH on motion
πŸ‘‰ Range: 3–7 meters
πŸ‘‰ Angle: 110Β°
πŸ‘‰ Interface: Arduino / Microcontroller compatible

No specifications available.

0.0

Based on 0 reviews

No reviews yet. Be the first to review this product!

Login to write a review.