PIR-sensor
The PIR (Passive Infrared) Sensor detects infrared radiation changes emitted by moving objects, typically humans or animals.
ποΈ 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.