Maker Factory Bn-2134043 Pir Motion Sensor Instructions

Maker Factory Bn-2134043 Pir Motion Sensor Instructions

MAKER FACTORY LOGO

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
OUTLOW or HIGH signal when motion is detected
VCCPower
GNDGND

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

ModuleOUVCCGND
Arduino®25VGND

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

  1. Prepare a sketch with the given code and upload it to your board.
  2. Connect the module/component to the board as shown in the connection diagram or table.
  3. Connect an LED to pin 13.
  4. When motion is detected the LED goes on.

Specifications

Operating voltage5 V/DC
AdjustmentsSensitivity and delay
Delay time0.3 – 18 s
Output levelHIGH: 3 V
LOW: 0 V
PIR sensor detection distance0 – 7 m
Detection angle (approx.)120°
Operating temperature-15 to +70 °C
Operating humidity30 – 90 % RH
Storage temperature-5 to +30 °C
Storage humidity20 – 75 % RH
Dimensions (approx.)35 x 20 mm
Weight (approx.) 8 g

Disposal

Danger 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

ec 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

Documents / Resouces

Download manual
Here you can download full pdf version of manual, it may contain additional safety instructions, warranty information, FCC rules, etc.


Related Manuals