Introduction: Arduino Laser Tripwire

Hey, there makers, hackers, and just plain inventors! This instructable is a fun and easy Arduino project for beginners (or advanced) that shows you how to make...ahem...drum roll please!
An Arduino Laser Security System! Bah, Bah, Bah,Baaaaaaaahhh! It uses simple electronic components, and an easy-to-use sketch. Basically what happens, is the laser shines on a photoresistor that sends an output to the Arduino. When the beam is interrupted, the arduino tells the buzzer to buzz, and the LED to light. So, without further ado, lets get started!

P.S. I wuz having trouble getting a video on here if it doent work, go to this link:
http://www.youtube.com/watch?v=YBTUJaXDccI





Step 1: Materials

This is an easy project, and requires a small amount of materials/tools. They are:

Materials:
Altoids Tin x 2 (one big, one small)
Arduino
Battery cord
3 volt button cell battery
Wire (any gauge will do)
Circuit board
Photo resistor
Buzzer
Laser diode
Stay-on push button
Switch
LED
10k resistor

Tools:
Wire cutter
Soldering iron
Nail
Hammer
Hot glue gun/glue sticks

Step 2: Laser Housing

Okay, let start! Begin by nailing two holes into the side of the smaller Altoids tin. make them as low as possible, so that the top doesn't get in the way.

Step 3: Solder and Install Laser

Solder together the laser diode, the stay-on push button, and the button cell battery. Install them in the two holes you made earlier with hot glue.

Step 4: Reciever Housing

Nail two holes in the bigger Altoids tin (one on each side in opposite corners). Now cut a piece of foam or rubber and place it on the bottom of the Altoids tin to insulate it.

Step 5: Reciever Schematic

Solder together your photo resistor,LED, Buzzer, and 10k resistor according to this schematic.

Step 6: The Sketch

This is the sketch for the Arduino. Copy and paste it into the sketch environment. Then upload it to the Arduino.


//Laser Tripwire sketch

#define LED 13 //LED is connected to pin 13

#define Buzzer 7 //Buzzer is connected to pin 7

#define Sensor 0 //Photoresistor is connected to pin 0

int val = 0; //val is used to store state of input pin


void setup() {

  pinMode(LED, OUTPUT); //sets digital pin as output

  pinMode(Buzzer, OUTPUT); //sets digital pin as output

  pinMode(Sensor, INPUT); //sets analog pin as input

}

void loop() {

  val = analogRead(Sensor); //read input value of sensor and store it

    if (val<100) // if the sensor goes below 100...
    {
    digitalWrite(LED, HIGH); //turn on LED
    digitalWrite(Buzzer, HIGH); //turn on buzzer
    }
else if (val>100)
    {
      digitalWrite(LED, LOW); //else, keep LED off
      digitalWrite(Buzzer, LOW); //else, keep Buzzer off
    }
}

Step 7: Install Reciever Circuit and Arduino

Make your connections to all the pins on the Arduino, then insert it into the Altoids tin. Make sure to cut two holes in the top of the Altoids tin for the buzzer and LED. You also will need to bend the photo resistor to align with your hole.

Step 8: Finishing Touches

The last step is to solder the switch and battery to the cord coming from the Arduino. Congratulations! You have just successfully made an Arduino Laser Tripwire! Have fun, and catch people in the act!

Microcontroller Contest

Participated in the
Microcontroller Contest