• Em promoção!
  • -1,10 €
Detector de Movimento PIR
  • Detector de Movimento PIR
  • Detector de Movimento PIR
  • Detector de Movimento PIR

Detector de Movimento PIR HC-SR501

:SEN10023
5,70 €
4,60 € Poupe 1,10 €
preço com IVA incluído

Tensão de Alimentação 5v, saida:0,3V ou 5V (saida 5V quando detectado movimento),angulo de detecção 110º, distancia maxima 7m

Quantidade

DESCRIÇÃO EM PORTUGUÊS BREVEMENTE DISPONÍVEL

Se tiver alguma dúvida neste produto não hesite em contactar-nos.

*Atenção: as imagens são meramente ilustrativas.

Overview

Highly integrated module popularly used for entry detection, it complies with microcontroller or DC loads.


Specification

  • Input Voltage: DC 4.5-20V
  • Static current: 50uA
  • Output signal: 0,3V or 5V (Output high when motion detected)
  • Sentry Angle: 110 degree
  • Sentry Distance: max 7 m
  • Shunt for setting overide trigger: H - Yes, L - No
  • Operation Level Digital 5V
  • Power Supply External 5V
  • Weight 15.00g
  • Version 1.0

Layout


Advantage

  • Simple, easy to adopt in system
  • There are two adjustable potentiometer on the module, you can use them to change the trigger sensitivity and the duration of the trigger signal

 

Buzzer Aplication Schematics

Relay Aplication Schematics

Sample Code

// (HC-SR501) PIR Sensor

int PIRpin = 8; // PIR connected pin
int value;

void setup() {
Serial.begin(9600);
pinMode(2, OUTPUT); //For Led
}

void loop() {
value = digitalRead(PIRpin); //Read PIR state

if (value == LOW) {
Serial.println("No Movement");
digitalWrite (2, LOW);
}
else {
Serial.println("Movement!");
digitalWrite (2, HIGH);

}

delay(100); //Wait
}
 

 

Datasheet

HC-SR501 PIR MOTION DETECTOR

SEN10023