MAKER FACTORY BN-2134043 PIR Motion Sensor Instructions
- June 5, 2024
- MAKER FACTORY
Table of Contents
BN 2134043
PIR Motion Sensor
Quick Instructions
Version: 2
Delivery Content
- Module
Description
The module is a Passive Infrared Sensor that detects motion. Use HIGH and LOW
signals to make decisions in your project. Use the adjustment dials to adjust
sensitivity and delay (see Specifications section for details).
Pinout / Pin Map
Pin | Description |
---|---|
OUT | LOW or HIGH signal when motion is detected |
VCC | Power |
GND | GND |
Example Application
The example makes a connected LED light up when motion is detected.
The instructions use the Arduino® platform to illustrate product use. You can
also use an Arduino derivative or another platform that supports this type of
product.
Connection
Module | OU | VCC | GND |
---|---|---|---|
Arduino® | 2 | 5V | GND |
Code
const int PIRSensor = 2;
const int ledPin = 13;
int sensorValue = 0;
void setup() {
pinMode(PIRSensor, INPUT);
pinMode(ledPin, OUTPUT);}
void loop(){
sensorValue = digitalRead(PIRSensor);
if (sensorValue == HIGH) {
digitalWrite(ledPin, HIGH);} else {
digitalWrite (ledPin, LOW);}}
Procedure
- Prepare a sketch with the given code and upload it to your board.
- Connect the module/component to the board as shown in the connection diagram or table.
- Connect an LED to pin 13.
- When motion is detected the LED goes on.
Specifications
Operating voltage | 5 V/DC |
---|---|
Adjustments | Sensitivity and delay |
Delay time | 0.3 – 18 s |
Output level | HIGH: 3 V |
LOW: 0 V
PIR sensor detection distance| 0 – 7 m
Detection angle (approx.)| 120°
Operating temperature| -15 to +70 °C
Operating humidity| 30 – 90 % RH
Storage temperature| -5 to +30 °C
Storage humidity| 20 – 75 % RH
Dimensions (approx.)| 35 x 20 mm
Weight (approx.)| 8 g
Disposal
Electronic devices are recyclable waste and must not be disposed of in the
household waste. At the end of its service life, dispose of the product in
accordance with applicable regulatory guidelines.
You thus fulfill your statutory obligations and contribute to the protection
of the environment.
Legal Notice
This is a publication by Conrad Electronic SE, Klaus-Conrad-Str. 1, D92240 Hirschau (www.conrad.com). All rights including translation reserved. Reproduction by any method, e.g. photocopy, microfilming, or the capture in electronic data processing systems requires prior written approval by the editor. Reprinting, also in part, is prohibited. This publication represents the technical status at the time of printing. Copyright 2022 by Conrad Electronic SE.
References
Read User Manual Online (PDF format)
Read User Manual Online (PDF format) >>