Miniproject 3
Miniproject 3
Miniproject 3
1 COMPONENTS:
Over the years Arduino has been the brain of thousands of projects, from everyday objects to
complex scientific instruments. A worldwide community of makers - students, hobbyists,
artists, programmer.
4
professionals - has gathered around this open-source platform, their contributions have added
up to an incredible amount of accessible knowledge that can be of great help to novices and
experts alike.
Servo Motor:
Servo motors use feedback to determine the position of the shaft, you
can control that position very precisely. As a result, servo motors are used to control the
position of objects, rotate objects, move legs, arms or hands of robots, move sensors etc. with
high precision. Servo motors are small in size, and because they have built-in circuitry to
control their movement, they can be connected directly to an Arduino.
5
PIR Sensor:
PIR sensors allow you to sense motion. They are used to detect
whether a human has moved in or out of the sensor’s range. They are commonly found in
appliances and gadgets used at home or for businesses. They are often referred to as PIR,
"Passive Infrared", "Pyroelectric", or "IR motion" sensors.
• Easy to interface
• Inexpensive
• Low-power
PIRs have adjustable settings and have a header installed in the 3-pin ground/out/power
pads. For many basic projects or products that need to detect when a person has left or
entered the area, PIR sensors are great. Note that PIRs do not tell you the number of people
around or their closeness to the sensor. The lens is often fixed to a certain sweep at a distance
and they are sometimes set off by the pets in the house.
You can adjust the sensor sensitivity and delay time via two variable resistors located at the
bottom.
6
Once the sensor detects any motion, Arduino will send a message via the serial port to say
that a motion is detected. The PIR sense motion will delay for certain time to check if there is
a new motion. If there is no motion detected, Arduino will send a new message saying that
the motion has ended.
Bread Board:
Because the solderless breadboard does not require soldering, it is reusable. This makes it
easy to use for creating temporary prototypes and experimenting with circuit design. For this
reason, solderless breadboards are also popular with students and in technological education.
Older breadboard types did not have this property. A stripboard (Veroboard) and similar
prototyping printed circuit boards, which are used to build semi-permanent soldered
prototypes or one-offs, cannot easily be reused. A variety of electronic systems may be
prototyped by using breadboards, from small analog and digital circuits to complete central
processing units (CPUs).
Breadboards have evolved over time, with the term now being used for all kinds of prototype
electronic devices. For example, US Patent 3,145,483, was filed in 1961 and describes a
wooden plate breadboard with mounted springs and other facilities. US Patent 3,496,419, was
filed in 1967 and refers to a particular printed circuit board layout as a Printed Circuit
Breadboard. Both examples refer to and describe other types of breadboards as prior art.
7
Jumper Wires:
A jumper wire (also known as jumper wire, or jumper) is an electrical wire, or group of them
in a cable, with a connector or pin at each end (or sometimes without them – simply
"tinned"), which is normally used to interconnect the components of a breadboard or other
prototype or test circuit, internally or with other equipment or components, without soldering.
Individual jump wires are fitted by inserting their "end connectors" into the slots provided in
a breadboard, the header connector of a circuit board, or a piece of test equipment.
There are different types of jumper wires. Some have the same type of electrical connector at
both ends, while others have different connectors. Some common connectors are:
Solid tips – are used to connect on/with a breadboard or female header connector. The
arrangement of the elements and ease of insertion on a breadboard allows increasing the
mounting density of both components and jump wires without fear of short-circuits. The
jump wires vary in size and colour to distinguish the different working signals. Crocodile
clips – are used, among other applications, to temporarily bridge sensors, buttons and other
elements of prototypes with components or equipment that have arbitrary connectors, wires,
screw terminals, etc. Banana connectors – are commonly used on test equipment for DC and
low-frequency AC signals. Registered jack (RJnn) – are commonly used in telephone (RJ11)
and computer networking (RJ45). RCA connectors – are often used for audio, low-resolution
composite video signals, or other lowfrequency applications requiring a shielded cable. RF
connectors – are used to carry radio frequency signals between circuits, test equipment, and
antennas.
8
CHAPTER 3
We already know the components required for this project. The connections are made as
follows;
Passive Infrared Sensor (PIR) , a sensor that measures infrared light radiating from objects in
field. The sensor work upon the temperature changes in the field of its radiation. For
example, if a human passes by its field the temperature changes from room temperature to the
body temperature this change in temperature is sent as a signal to the Arduino board.
Servo motors, A specially designed motor to control the angular positions.It has three wires
coming out of its case i.e Signal wire(Orange wire), VCC wire(Usually red) and ground wire
(Usually black or even maroon ).
First, the Data OUT of the PIR Sensor is connected to Digital Pin 8 of Arduino. The other
two pins of PIR Sensor i.e. Vs and GND are connected to +5V and GND respectively.