Backpack Anti-Theft Alarm: Instructables
Backpack Anti-Theft Alarm: Instructables
Backpack Anti-Theft Alarm: Instructables
by bergerab
If you're a student then you have likely heard of someone's backpack being stolen on campus. To ease my mind I've
designed a backpack ant-theft alarm. When activated, this device senses when a backpack is picked up and sounds an
alarm to draw attention to the thief. The alarm is perfect for quiet places such as libraries or classrooms where a buzzer
would be heard clearly (and cause enough of a scene to get you kicked out of the classroom/library too ;) ). It is a great
project for beginners.
The backpack anti-theft alarm is powered by an ATtiny85 and functions using an ultrasonic range sensor (HC-SR04) to
calculate distance from the backpack to the ground and a 5V buzzer to produce an alarm. Once the backpack is above a
certain distance, the buzzer sounds and does not stop until the device is turned o . To provide the most security, you
must enter a 5-bit binary code to turn the device o . This code is made using 5 SPDT switches, (by connecting them in a
way that only one combination connects the circuit to ground). If mounted to a backpack correctly, this device can
provide excellent security against backpack theft!
Throughout this instructable, you will learn a way of protecting your circuits using binary code, how to interact with
the HC-SR04, how to use ATtiny85s, and you'll have a more secure anti-theft backpack! Let's get started with our
parts list!
Our security switch is going to ensure that only the owner of the backpack alarm can turn it o . Using 5 SPDT switches,
we can make a single 5-bit security switch which is o only when one combination of 0s and 1s are entered.
To start the switch, use your wire cutter (or metal cutter) to snip any excess metal on your switches (see pictures). Then
hot glue each switch to the last. Make sure you hot glue both sides to make a rm bond. Continue these steps until all 5
switches are straightly and strongly bonded together.
To get our security switch working we will have to move on to the next step to wire our switches!
To wire the switch requires a little knowledge about SPDT switches. Single Pole Double Throw switches have two
positions and connects the center terminal to either the upper or lower terminal. This switch is perfect for our purposes.
We can treat the upper terminals as 1, and lower as 0s.
We will use two wires that we can name: GND and OUT. First, connect all the center terminals to OUT. To make the
switches code, connect GND to either the upper or lower terminal on each switch and randomly alternate to create a
pattern. Each terminal that is left with no connection will be the correct code to turn o our switch. This is because if any
switch is not in the correct position, it will connect the circuit. You have to have all 5 switches in the correct position to
turn the device o . Finally, connect our GND and OUT wires to a 2.54mm two pin male connector. To protect your switch,
use hot glue to hold all loose wires in place.
When your security switch is connected properly, and you have wired your 2.54mm male connector, we can nish
soldering the main perfboard.
Now that we have soldered the security switch and main components, we can nish the circuit by connecting our main
components to the ATtiny85!
Using the attached schematic (see 5th picture) connect the HC-SR04, buzzer, indicator LED, power supply, and security
switch to the appropriate arduino pins. In case you have di culties reading a schematic, here are the connections that
you will have to make:
-For the HC-SR04: VCC -> 5V, TRIG -> ATtiny pin 7. ECHO -> ATtiny pin 3, GND -> GND.
-For the indicator LED, connect a 330 ohm resistor to the positive lead on your 5mm LED then connect the negative lead
to GND (all in parallel with the ATtiny85).
-For the "power supply" all we need to do is connect a 1N4007 from the 6V supply (coming from our two 2032s) to the
ATtiny's VCC (pin 8). This is to drop the voltage down to a safe operating voltage for the ATtiny85 (it must be no higher
than 6V).
-To get the buzzer working, we need a transistor. This is because we want the buzzer to be as loud as possible, and if we
just supplied it with an ATtiny pin, it wouldn't have much current (or voltage). So connect ATtiny pin 5 to the base of a
transistor via a 10k resistor. Next connect 6V from our batteries to the transistor's collector, and the buzzer to its emitter.
Finally connect the other end of the buzzer to GND.
-To connect the security switch, connect GND to the previously named GND connection on the switch and nally, OUT to
the GND of our ATtiny85 chip.
Now our circuit should be connected and ready for the code.If you're having trouble with the circuit, refer back to the
schematic and don't hesitate to ask a question in the comments. Let's move onto uploading the code in the next step!
The code is very simple, it should even be easy for all you beginners! If you're new to coding I suggest looking at the code
and thinking of some lines as just some psudo-code. For example, check out this code:
//getDistance:
long duration, distance;
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
distance = (duration/2) / 29.1;
Looks confusing, right? Well actually it is! So it is best to just think of all those lines as one function that gets the distance.
Interfacing with a complex module like the HC-SR04 can be confusing and that's why there are libraries written for it!
Be sure you look for some good documentation on how to program an ATtiny85! You will need another arduino
(or programmer). Here is my favorite reference.
If my code confuses you or you are not quite code literate, please continue reading to learn about the basics of my code.
(If this still doesn't answer your questions please comment below!). The rst few lines of my code are just declarations
and de nitions of variables all of which are basic arduino syntax. In the setup() function I declare the pin modes to tell
arduino what pins i'll be using for input or output. Also, I add a short delay for the user to get the device situated so that
the alarm doesn't accidentally go o while setting it up. Finally, there is the loop() function. This function continuously
checks the distance between the HC-SR04 and any object in front of it. If it ever exceeds the constant ALARM_DISTANCE,
then the boolean variable "alarm" will become true. If that variable is true, the loop() executes a few lines to sound the
alarm.
Finally our alarm should be beeping and working identically to the video shown in the introduction! However, it is
still missing one thing: the case!
https://www.instructables.com/ORIG/FR8/MLSF/HZKOZ6T0/FR8MLSFHZKOZ6T0.txt
To make the circuit t in the enclosure, we need to dremel holes for the HC-SR04, buzzer, security switch and indicator
LED. This should be a matter of guess and check for most of the way (as dremel work usually is), but there are some tips to
help you out.
-Make sure you try to outline your cuts with ink before you begin so you know where and how large each cut should be.
Backpack Anti-Theft Alarm: Page 18
-Be careful not to cut too much plastic out where you don't need to.
-Always cut from the inside so you don't accidentally scratch the outside of the case.
-Dremels are very dangerous. Wear gloves and stay away from the tip!
Once all the pieces of our circuit t snug in their spaces, we can mount the security switch!
Since our enclosure doesn't have room for screw mounting the switches, we have to mount them using either hot glue
or epoxy. Make sure you place your security switch into your dremeled enclosure ensuring that it is straight and aligned
in the correct direction.
Heat up your hot glue gun and use generous amounts of glue to mount the security switch to the project box. Use glue
on both the outside and inside; however, be careful not to get glue inside of any of the switches since that will cause the
switches to stop conducting.
Make sure your hot glue doesn't rise too far above the case since we will be closing the enclosure in our next step!
Finally the circuit is complete, the case is all dremeled out, and the security switch is mounted! Now we can just snap on
the back of the case and mount it right? Well most of the time it'll be that easy; however, we have to be careful that no
components inhibit the back panel from snapping in,.
If you have trouble closing the case, check to see if any hot glue is blocking the case from closing and use a utility knife to
cut it away. Also make sure no transistors, diodes, or leads are jutting out from the case that could prevent the enclosure
from closing. Finally, check to see if the HC-SR04, buzzer, and LED protrude from the enclosure. If they aren't this could be
stopping the case from closing. Use a dremel tool to enlarge the cuts you made before, so that the components slide
through the holes and make room for the back panel.
Now that your backpack anti-theft alarm is all closed up and functional, we can mount it to your backpack!
To use your new backpack anti-theft alarm, you will need to mount it to your backpack securely. In the event of a
theft,,you don't want the thief to be able to simply remove the alarm. In the attached pictures, I show a simple way to
quickly mount it to just about any backpack; however, it isn't the most secure option.
To make a more safe alarm you could mount using:
-Epoxy or hot glue
-Backpack clips
-Velcro
-Thread
If you nd a secure way to mount your backpack anti-security alarm, please comment below with an attached
picture!
Finally you can enjoy the security of having your own backpack anti-theft alarm for some ease of mind this school year! I
hope you've learned a lot about HC-SR04s, ATtinys, buzzers, making a security switch, and using the dremel tool. If you
enjoyed this article and would like to support me, please vote for this instructable in the DIY University, Tech, or
Microcontroller contests! Click here for more fun and rewarding projects. Thanks for your interest and enjoy your new
device!
https://www.instructables.com/ORIG/FCF/1QBM/HZFDWQUE/FCF1QBMHZFDWQUE.mp4
hello, is AT tiny85 an IC? if so what is the serial number?? really urgent i need... thank you..
Good Day.
just want to ask if Atiny85 can read the data of Accelerometer
and transfer it to 433Mhz transmitter so the transmitter would send it
to the 433Mhz receiver on the other end?
:) Thanks for the future Help..
hello, i have a question regarding the safety switch. can i use tact switches for it ?
hello there i'm currently doing a different type of alarm project but i would like to adopt your
security switch idea. the think is i was a bit puzzled and convoluted with the wiring part of it and
how implement it correctly in order to disable the alarm. would you be so kind to provide me with
thurough explanation and tutorial?
I know that it says to connect the resistor to ground but its not shown in the fritzing circuit
diagram, is there any way to update or include it into the diagram so that its easier to see where it
should be placed?
In the circuit diagram what is J1?
J1 is the label for the buzzer. Fritzing randomly gave it that name I'm not sure why, in the future I'll
just remove that to avoid confusion. Thanks for the comment!
Switches need to be wired in series {AND} not parellel {OR} .
Hello! Thanks for the comment. I wired the switches in parallel which actually does work. You
could look at it using either AND or OR logic (depending on what you're trying to define). Here is
the boolean equation for our function "F". F = s1 OR s2 OR s3 OR s4 OR s5. This equation is
correct since we want F to equal 1 in every circumstance other than all the switches being equal
to: s1=0 s2=0 s3=0 s4=0 s5=0. I hope this answers your concern!
An OR will be true if any switch is TRUE. Based on the diagram, I think that only s1 is needed to
be 'tried' to disable the alarm.
Exactly! If any switch is TRUE, the circuit will be closed (ON). You need to put all 5 switches in
the correct positions in order to make the circuit open (OFF). Try implementing the circuit and
you'll see what I mean. Thanks!
Thanks so much! If you get a chance to try it out yourself please post some pictures of your
results!
Thanks for the great project.
No problem! Let me know if you get a chance to make it yourself. I'd love to see some pictures!
Thanks
very nice project
Nice Idea.
I especially like the 5 bit security switch thing, this is what commercial personnal alarms lack to
be of any use.
You could improve your noise output by canibalizing one of those really cheap "window alarms"
from any home improvement store.
Backpack Anti-Theft Alarm: Page 30
(This kind :
http://i00.i.aliimg.com/photo/221015342/Door_And_Window_Alarm.jpg
)
They come in packs of 3-4 for a few bucks and are loud as hell.
All you have to do is remove their reed switch, and replace it with a transistor or optocoupler
commanded by the Attiny.
They are my favorite cheap source of big noise for alarm projects :)
You
could even leave the reed swith in and add your control transistor in
parralel, so you'd retain the "alarm if magnet absence"
functionnality.You could then make any kind of arrangment for the magnet
to fall if the bag is lifted away, or fix it to something you don't
want separated from your bag without your knowledge.
You've graduated to the awesome category.
Excellent idea and great documentation. Well done!