Sparkfun PIR Motion Sensor SE-10

MotionSensor-Module SE-10
SKU: SEN-13285
Sign up to get notified when this product is back in stock

Availability: Currently out of stock

CHF11.90
.

Fast shipping from our own warehouse in Steinhausen/ZG. Free delivery for orders starting from CHF 300.00!

Products can also be picked up.

Questions or suggestions? Contact us.

Product Description
Details

This is a simple to use motion sensor. Power it up and wait 1-2 seconds for the sensor to get a snapshot of the still room. If anything moves after that period, the 'alarm' pin will go low.

Red wire is power (5 to 12V). Brown wire is GND. Black wire is open collector Alarm.

This unit works great from 5 to 12V (datasheet shows 12V). You can also install a jumper wire past the 5V regulator on board to make this unit work at 3.3V. Sensor uses 1.6mA@3.3V.

The alarm pin is an open collector meaning you will need a pull up resistor on the alarm pin. The open drain setup allows multiple motion sensors to be connected on a single input pin. If any of the motion sensors go off, the input pin will be pulled low.

We’ve finally updated the connector! Gone is the old “odd” connector, now you will find a common 3-pin JST! This makes the PIR Sensor much more accessible for whatever your project may need. Red = Power, White = Ground, and Black = Alarm.

Sensing the Motion with a Microprocressor is a real piece of cake:

(Arduino Sketch)

int pirPin = 2; //digital 2

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

void loop(){
  int pirVal = digitalRead(pirPin);

  if(pirVal == LOW){ // motion detected
    Serial.println("Motion Detected");
    delay(2000);
  }

}
Additional Information
Additional Information
SKU SEN-13285
Weight 0.0200
Manufacturer SparkFun
Reviews
Write Your Own Review

Only registered users can write reviews. Please, log in or register

Downloads
View FilePIR SE-10 Datasheet    Size: (50.54 KB)
Questions or Suggestions?

Do you have a question about a product? Do you have a suggestion for the description or even found an error? Contact us!