3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

Arduino Controlled Motion Sensor

Arduino Controlled Motion Sensor
In this Instructable, I'll be explaining how to build a motion activated alarm! It uses an Arduino microcontroller, a PIR (passive infrared) sensor, and a type of alarm. You can use an LED indicator, a buzzer, or a piezo. That's the easy part. I will also be showing how to display to a character LCD screen, and over serial communication with a pair of XBee chips to relay the information to your computer! We will start with the basic LED lighting up though. That is also the best way to test the functionality of your PIR sensor to ensure it is working.

You should have a little bit of experience with Arduino to do this project. There is enough detail in this instructable to build it without but it would help to understand if you wanted to expand on it. Enough small talk, lets begin!

After uploading, open the serial terminal as well. The output can be read from there.
 
Remove these adsRemove these ads by Signing Up
 

Step 1Basic LED/Buzzer

Basic LED/Buzzer
Materials needed:
1. Any Arduino or a deviation of it should work perfectly fine for this. $30 for the standard Uno. As long as it can be programmed by the Arduino IDE you will be fine.
2. A PIR sensor. I am using the Parallax PIR sensor. You can get it for about $10. The one from Adafruit should work fine if you set it on H (retrigger) which I will explain later. The one from SparkFun has the signal pin that goes LOW (off) on detection so there will be some code changing. I do not know exactly how that one outputs signals.
3. A prototyping breadboard will make this much easier. Otherwise you will be soldering pins. This should be anywhere from $5 to $15 depending on what kind you get.

The Parallax PIR sensor I use requires a 10-60 second warm up time in order to calibrate itself. It is best to have no movement while it is calibrating. I give it 30 seconds, which I incorporate into the code.

Here is how I have my PIR set up. It is built on a shield that fits over the Arduino but the pins are the same.

My PIR module has the jumper on the back set on H - retrigger. The pin will stay HIGH the motion is continuous. The signal pin is hooked up to Arduino pin 4. The LED is hooked up to Arduino pin 5. The other two white pins do not matter in the picture, those are soldered to my shield from another project.

During the warmup period, the red LED blinks two times per second. After 30 seconds, the LED will stop blinking rapidly. Generally the PIR will not blink that rapidly in normal use so you will know when the warmup period ends. Check the images for the wiring. Arduino PDE file is attached.

To use a buzzer, simply wire that up in place of the LED and remove the resistor. You should use a transistor if the buzzer is not a piezo and is in a white boxy form that generates the buzz by vibrating against a plastic piece.
« Previous StepDownload PDFView All StepsNext Step »
6 comments
Feb 9, 2012. 11:23 PMaslan0490 says:
this is something similar to what i have to do in my final year engineering project. my project is monitorin of oil well parameters using zigbee technology. in this we have 4 sensors(temp,press,pir, optocoupler). these sensors sense n pass data to microcontroller (still not able to decide which one to use). this data is transmitted by microcontroller using zigbee to a remote desktop. after reading this instructable of yours it seems very similar to what i have been looking for except that i have to use 3 sensors.. can u please help me out if u already have any such projects made or know about any links?
Jun 1, 2011. 12:45 AMTerryKing says:
Here's a really simple version of this, if you like to experiment with Arduino...
http://arduino-info.wikispaces.com/Brick-Pushbuttons%26OtherSwitches#Motion

Regards, Terry King
terry@yourduino.com
Feb 20, 2011. 11:51 PMplanetscape says:
What kind of protoboard is pictured in Step 1? I looks like Sparkfun something, but I can't identify it. TIA!
Feb 11, 2011. 5:45 AMplacko says:
The PIR sensor for adafruits has a trim pot on the back to adjust the length when it's triggered. You can literally have it be triggered and only output a HIGH for a few seconds, or you can have it triggered for up to 25 seconds i think (not exact).

With that said the sensor would be bad to use as an active lighting device. You would have to be constantly moving for it to always be on.

What i did in my code a while back was setup some settings that determined how long the lights would stay on even though the sensor may have went back to a LOW state.

You could also use it as a switch, located near a door, situated to only be triggered when someone walks through the door.

My Project includes:
-2 PIRs at two different locations in the room
-1 at the door, so any one of the PIR will always be on while i'm in the room.

when i sit at my computer, the PIR underneath the desk triggers some lights around my computer.

when i sit at my tv, the back lights around my tv turn on.

The one at the door serves as a turn off protection.


So with a couple of these paired along with a program that keeps track of when certain lights should be on makes for a very nice lighting in my work area.

Also, i have 12v leds that use PWM with mosfets.


Good work, though.

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
11
Followers
5
Author:LemonSlice