Introduction: Simple Arduino PIR Motion Detector Module Demo

About: Hi, I'm Brad. My interests spread over a large area and I tend to get carried away when something new peaks my interest. I picked up my basic electronics knowledge in bed. Say what? I was laid up after surgery…

I know there are plenty of Instructables and tutorials on this already. My goal is to simplify everything down to the bare bones minimum required so a beginner (like me) can get it working before they get frustrated and give up.

To hopefully make this even easier I'm breaking this into two parts. The first part will be using the PIR Motion Detector (pic 1) alone to turn an LED on and off. After that's working, the second part will be to add your Arduino board and some simple code to pass control of the LED from the PIR module to your Arduino.

What are you going to need;

1. Power supply (you can use the 5v pin on your Arduino - I use an old PC power supply when playing)
2. Electronics breadboard (if you don't have one, get one - they're cheap and make things a whole lot easier)
3. PIR Motion Detector module (Amazon, eBay, Radio Shack, etc )
4. LED (a simple standard LED, steal one from one of your kids toys if you have to)

That's it for the first part, in the second part we just add

5. Arduino board
6. Arduino code

One thing I found right away is that the PIR Motion Detector module can't be plugged directly into a breadboard. The capacitors on the module's circuit board get in the way. I solved that by soldering longer pins on one module (pic 2) and used a three pin plug (pic 3) I had lying around on another.



Components: PIR Motion Detection Module purchased from http://www.icstation.com/index.php?cPath=79&aid=55

Step 1: Provide Power to the Module

With the power supply OFF

Connect one lead from positive on the power supply to the VCC pin on the module (from the 5v pin on Arduino if you're using that for power)
Connect one lead from negative on the power supply to the GND (ground) pin on the module (GND pin on Arduino if that's your power source)

And that's it, turn on the power and you'll have a working PIR Motion Detector. Just one problem, you'll never know when it detects motion. You might want to move on to step two where we'll add the LED so you know when stuffs moving around that module.

Step 2: Adding the LED

The center pin on the module is labeled "OUT". And that's what it does, it sends current out that pin when the module detects motion. We are going to use that current (approx 3.3v) to light up our LED.

Connect the OUT pin of the module to the positive lead on the LED (the positive lead on the LED will be the longer of the two, you can also figure out the positive lead by looking inside the LED where you will see two contact plates - the smaller of which is positive)

Connect the LEDs negative lead to your power supplies GND

Now that's really it. Turn on the power and the LED should light up when the module detects motion.

Please note that the LED will turn off after the module no longer detects motion. If you wave your hand over the module as soon as the LED turns off, nothing will happen. The LED won't turn on nor will the module wave back at you. There is a built in delay in the module before it will detect motion again, the default on mine is 5 seconds.

Step 3: Using Arduino Board As Power Source

If you are NOT currently using your Arduino board as the power supply then follow the steps below. If you are already using the board to supply power hang in there a second while we get everyone doing that, or just go to Step 4.

To supply power from your board;

REMOVE any power source currently connected to the breadboard, do the same for your Arduino board and then;

1. Connect the 5v pin on the board to positive on the breadboard
2. Connect the GND pin on the board to negative on the breadboard

For those of you that just switched to your Arduino board for the power source, double check things still work. Apply power to your Arduino board, it should now be supplying power to the PIR module and the LED should turn on when motion is detected. It should not matter, at this point, what code is running on your Arduino because all we are doing is using it for a power source.

That's working, great! Let's move on then...

Step 4: Wiring Changes for Using the Arduino Board

Ok, we are getting close. Here are the wiring changes we need to make.

1. Move the module's OUT wire from the positive lead on the LED To pin 2 on your Arduino board.
2. Connect pin 13 on your Arduino board to the positive lead on the LED (where you just moved the wire above from)

Well that's that! Your Arduino board is now supplying the power for this little adventure, it will also receive "input" from the module on pin 2, and send power to the LED via pin 13 when the code tells the board to do so.

Well now, isn't this special! All we have left is uploading the code to your Arduino board and that little sucker will be in charge of the LED. And the code you need is in step 5.

Step 5: Code for Your Arduino Board

Here's a very stripped down version of code that will accomplish our goal of using your Arduino board with a PIR Motion Detector module. Ok, big leap here but I'm assuming you know how to copy and paste between programs. But here's a hint, highlight and copy the code below first, open your Arduino program, open a new file and select Edit, then click Select All, select Edit again, then click Paste. Save that file and upload it to your board.

If you get any compile errors make sure all the default code you see when you open a new file is deleted. Also make sure that all of the code below was copied and appears the same in the program as it does below (well, except for the word-wrap I see on my own notebook, download the PDF - the code looks better).

11/2/15 Update: I attached the code file. Right click the file, select SAVE AS and save it to a location where you'll be able to find it again. :-) It will also want to create a folder with the same name as the file when you save it - let it do so. Then just double click the saved file and (if your file associations are correct) the Arduino program will open with the code ready to go for you.

------------------------- COPY EVERYTHING BELOW THIS LINE ----------------------------------

//PIR Motion Detection Module demonstration code - not intended for practical use


int LED = 13; // The word "LED" can know be used throughout the program and will always reference pin 13
int Sensor = 2; // The word "Sensor" can know be used throughout the program and will always reference pin 2
int val = LOW; // "val" will be a variable used to store the state (HIGH or LOW) of the sensor

void setup()
{
pinMode(LED, OUTPUT); // We just told the program that LED (pin 13) will be used for output
pinMode(Sensor, INPUT); // And this tells the program that Sensor (pin 2) will be used for input
}

void loop()
{
val = digitalRead(Sensor); // To determine if "val" is HIGH or LOW this checks the state of the Sensor (pin 2)

if (val == HIGH)digitalWrite(LED, HIGH); // turn on the LED by applying voltage to pin 13
if (val == LOW)digitalWrite(LED, LOW); // turn off the LED by shutting off voltage to pin 13
}

----------------------- COPY EVERYTHING ABOVE THIS LINE -----------------------------

Now we're really done!! Have fun and don't stay up all night waving your hand in front of the PIR motion detector because you like watching the LED turn on and off.