Luggage Security System: S.Vandana 180040468 SONALI KUMARI 180040632 CH - KALYANI 180040688
Luggage Security System: S.Vandana 180040468 SONALI KUMARI 180040632 CH - KALYANI 180040688
on
Submitted by
S.VANDANA 180040468
SONALI KUMARI 180040632
CH.KALYANI 180040688
IN
VADDESWARAM-522 502
April 2019
1
Koneru Lakshmaiah Education Foundation
DEPARTMENT OF BASIC ENGINEERING SCIENCES - II
Workshop practice for Electrical & Electronics engineers (18EE1003)
Signature of HOD
2
ACKNOWLEDGEMENT
Last but not the least we express our deep gratitude and affection to our
parents who stood behind us in all our endeavours.
S.Vandana-180040468
Sonali Kumari-180040632
CH.Kalyani-180040688
3
TABLE OF CONTENTS
2.
3.
4.
5.
6.
7.
8.
9.
10.
ABSTRACT
During our journey through train and bus, we carry many important things and all the
time we have fear that someone might lift our luggage. So to protect our baggage, we
normally lock our baggage through old ways by the help of chain and lock. After all
4
locks, we still remain in fear that someone may slash the chain and take away our
valuable material.
To overcome with these fear, here is an easy circuit which is based on the NAND gate. In
this circuit, when someone tries to lift your luggage, it will generate a warning alarm
which is very much helpful during your travel in the bus or train even at the night time as
it can also produces audio visual indication attached to the relay.
Another application of this circuit is that you can employ these into your house so to
avoid the attempt of robbery in your house with the help of this alarm circuit. When anyone
tries to open the door of your house, loop break down and sound from the alarm produce.
To get familiar with the working, you should get aware with the NAND gate truth table
which is shown below –
5
INPUT INPUT OUTPUT
A B Y=A.B’
0 0 1
0 1 1
1 0 1
1 1 0
Procedure:
Components Required:
6
In this project we have used the bread board and details list of the hard ware
components are
IC
CAPACITOR
RELAY
Resistors
Jumper wires
7
Bread board
Working
One end of the resistor pair is connected to 5V and the other end is hooked up with
ground. The 5volts that the arduino provides gets divided up between the 2
resistors depending on the value of the 2 resistors. The resistors which holds the
greater resistance gets more of the voltage according to ohms law formula V=IR.
The voltage that falls across a component is directly proportional to the amount of
resistance it contains. Using this principle we can setup a mathematical model to
determine the resistance based on the voltage division.
Circuitry is simple, all you need is a resistor of known resistance, the resistor you
want to measure , and the arduino .We will set up a voltage divider and measure
the voltage between the known resistor and the unknown resistor.
8
Code:
int analogPin= 0;
int raw= 0;
int Vin= 5;
float Vout= 0;
float R2= 0;
float buffer= 0;
void setup()
Serial.begin(9600);
void loop()
9
{
raw= analogRead(analogPin);
if(raw)
Vout= (buffer)/1024.0;
R2= R1 * buffer;
Serial.print("Vout: ");
Serial.println(Vout);
Serial.print("R2: ");
Serial.println(R2);
delay(1000);
We create a variable analog and assign it to 0.This is because the voltage value we
are going to read is connected to the analog pin is A0. This voltage represents the
voltage value falls across the resistor value we are measuring. Next we create a
variable name raw, which we will use to read in the analog voltage value. This later
is our code get assigned to the analogue read () function.
10
Output: Screenshot
Advantages:
1. The cost effective : The cost effectiveness is one of the primary aim as the
ohmmeter available in the market for lower value measurement are costly than the
ohmmeter used for the measurement of high value resistance . Due to its high cost
the bulk purchasing of such ohmmeter becomes an expensive task. Therefore the
industries manufacturing the resistor of low value require cost effectiveness of
ohmmeter. The above system achieves this requirement effectively.
2. Improvised accuracy: The resistors with low value in milliohms are used in
advanced cars with sensitive power steering and break circuits. Now a days these
advancements have become the major cause for the severe accidents . Therefore
the components used in such circuits must have accurate and precise value for
smooth working of such circuits. Ultimately this refers to the accurate testing of
11
the resistors used. Improvised accuracy is thus the second primary aim of the
ohmmeter.
Conclusions:
In this project we came to know the working of Arduino, its hardware / software
features and its applications as to where it is currently being used. We have also
learnt how to write sketches for Arduino in its own IDE (software). Developing
new ideas with Arduino is endless. The possibilities of using an Arduino to learn
and develop new ideas are infinite. Though it does have its own limitations, it is a
great tool that can be used in learning.
References
12