Introduction: Another Arduino Laser Tripwire
I've made a couple of modifications: the laser is now independent from the Arduino so that it can be placed anywhere in the room and I've changed the LED to a buzzer.
LASERS ARE DANGEROUS AND CAN DAMAGE THE EYES. IF CHILDREN ARE USING THIS INSTRUCTABLE ENSURE THEY ARE SUPERVISED BY A RESPONSIBLE ADULT AT ALL TIMES.
Step 1: Parts
You will need:
Laser emiter, 3v battery and on/off switch OR Laser pointer and electrical tape
Arduino
Photocell (a big one because it makes an easier target)
2 10k resistors
peizo buzzer
Battery to power the arduino with a jack
breafboard
Various short jumpers
Elastic bands
Blu-tac
Bored kids
Wet sunday afternoon
Step 2: Build the Circuit
Connect the peizo's positive wire to pin 11 via a 10k resistor and ground wire to ground on the breadboard.
Connect one leg of the photocell to the 5v pin on the arduino.
Connect the other leg to analog pin 0 AND to ground on the breadboard via the second 10k resitor.
Connect ground on the breadboard to ground on the arduino.
Plug the battery (I used 12v because that was what was to hand) into the arduino power jack when you want to use it away fronm the computer but to get it up and running it can take power through the USB for now.
Strap it all together with an elastic band.
If using a laser emitter wire it to a 3v battery pack and add lots of blu-tac to make aiming it easier later on.
Step 3: Calibration
Photocells differ so you need to calibrate yours to your laser. Run the following sketch from Login258 or use the one on the arduino website at http://arduino.cc/en/Tutorial/Calibration
void setup() {
pinMode(4, OUTPUT);
Serial.begin(9600);
}
void loop(){
digitalWrite(4, HIGH);
Serial.println(analogRead(0));
}
With the sketch running press Serial Monitor on the arduino window and make a note of the numbers that appear in the bottom of the window with the laser on the photocell and when it is off (ambient light).
Step 4: The Code
/*
- Jonathan Robson Feb 09.
- Laser tripwire activates a buzzer. adapted from
- https://www.instructables.com/id/Arduino_Laser_Tripwire/
int buzzPin = 11; // buzzer connected to digital pin 11
void setup() {
pinMode(buzzPin, OUTPUT); // sets the digital pin as output
}
void loop(){
if(analogRead(0) < 850){ // this number depends on calibration of the photocell
digitalWrite(buzzPin, HIGH); // turns buzzer on
delay(1000); // waits for 1 second
digitalWrite(buzzPin, LOW); // turns buzzer off
} else{
digitalWrite(buzzPin, LOW);
}
}
29 Comments
6 years ago
hey I'm trynna make this and I've done the exact same thing but when there's no laser the buzzer sounds, and it sounds louder when the laser is shone. I've copy-pasted the code. Please help it's really important.
Reply 6 years ago
I haven't looked at this since I posted it so am a bit rusty. It may be code is now deprecated and you need to find updated commands on the forums OR the cell is not calibrated as in Step 3. You need a clear differential in readings so the code knows what is high and what is low. If you copied the readings from my code they will be different for your laser and cell so won't work. Also I put my photocell down a short piece of plastic pipe to keep the cell in the shade which helped a lot.
10 years ago on Introduction
Can someone make an instructable to help me run a code on an Arduino Uno? If would be very helpful! Thanks.
(I need fully detailed steps)
Reply 8 years ago on Introduction
1 start Arduino IDE
2 open code you want
3 connect Arduino to yr computer with USB cable
4 in IDE select under 'Tools' the proper port and board
5 press 'upload' in yr IDE
10 years ago on Introduction
Is there any code needed to make this work? Or can I just set it up & it will work?
Reply 8 years ago on Introduction
yes you need code, otherwise the arduino has no idea what you want
8 years ago on Introduction
I can't get easy access to cheap laser pointers in my region (west Africa) but I sure have hundreds of faulty CD and DVD players lying around. Could I make use of the laser module inside these players? If yes, would I have to remove their lens system or just use it as it comes? A quick answer will be appreciated.
11 years ago on Introduction
do you when the beam is broken, does the buzzer keep on buzzing or does it tur off after a while
Reply 11 years ago on Introduction
yes it turns off
14 years ago on Introduction
Thanks for the credit! I'm glad my Instructable actually made some sort of impact. Someone commented on mine and said that two photoresistors would work well, one for ambient light and one for the laser, so that's a good suggestion for you .
Reply 14 years ago on Introduction
Mr Login258......I just stumbled onto your little experiment. I have a need and I figured you seemed a lot smarter than I and could tell me if it is possible, how small could the devices be and how much would each cost? I want a laser beam that goes between 20" - 36" or maybe even 48" and when broken makes a noise. I need small....maybe the laser in one section and the "guts" in another place? Cost......are we talking $5, $10, $25 or $50? How do lasers perform outside; wind and sun? My email is rjones.chodrowrealty@gmail.com.........Dinner on me if you can help.
Reply 11 years ago on Introduction
why not buy the arduino board and just get atmega's perloaded witht the bootloader.
make your prototype and look up for rrrrrrb arduino
slder the connections and you will have it ready for abt 10 $ max
Reply 12 years ago on Introduction
Grey, I spent about 50 dollars on the supplies for this whole project including an Arduino Uno (official version from Arduino) to make this. A green laser could go VERY far, lasers are not affected by wind/sun or anything. My cheap $2 red laser can definitely go about 200-300 fet.
Reply 14 years ago on Introduction
You could make one pretty cheap. Well really, it depends. For the first one it might cost $50 total, but after that each would be less than $10. Only because the tools needed to program the microcontroller are a bit pricey. Distance isn't a problem, and it could be about the size of a thick cellphone (receiver) with a completely separate battery powered laser unit. And dinner definitely isn't required for my help.
Reply 14 years ago on Introduction
Beats me. I live in Shanghai. I get them for about 3 dollars at the electronics market down the road. Wind doesn't affect lasers. Sunlight does. At night I lose sight of it after about 3 blocks.
Reply 14 years ago on Introduction
Another thought is that since this is probably going into a case of some sort, drill a hole in the case for the photoresistor, and recess is into the case a bit so that ambient light is less of a factor.
Reply 14 years ago on Introduction
Yes, recessing makes it a lot more flexible as to where you can place it.
13 years ago on Introduction
is there a way to make the buzzer turn off when someone crosses back through the trip wire. That way if it is used for security it wouldn't turn off until the person leaves.
Reply 12 years ago on Introduction
Of course there is. The sketch needs to hold a counter in memory that gets switched once and switched again and set the pins appropriately to control the buzzer. Very possible, but the software is different.
13 years ago on Introduction
Thanks for the very helpful instructable.
Just wondering, if I could seperate the photocell and Arduino board, by about 20 metres (using wire) ?
Its just that I want to have the photocell at the top of my driveway, and the buzzer inside my house.
I have no idea, if a length of wire, would affect the voltage output of the photocell - anyone have a clue ?