You are on page 1of 15

IR REMOTE CONTROL USING ARDUNIO

SUBMITTED BY
GUIDED BY
Mrs.V.Vineela O.Nandivardhan
Asst.Professor (17761A1032)
CONTENTS:
• ABSTARCT
• INTRODUCTION
• COMPONENTS
• STATEMENT OF PROJECT
• METHODOLOGY OF PROJECT
• ADVANTAGES
• DIS ADVANTAGES
• CONCLUSION
ABSTRACT:

• Infrared (IR) communication is a widely used and easy to implement


wireless technology that has many useful applications. The most
prominent examples in day to day life are TV/video remote controls,
motion sensors, and infrared thermometers.There are plenty of interesting
Arduino projects that use IR communication too. With a simple IR
transmitter and receiver, you can make remote controlled robots, distance
sensors, heart rate monitors, DSLR camera remote controls, TV remote
controls, and lots more.
INTRODUCTION:

• Automation is a technique of controlling a process by electronic devices


with reducing human involvement to a minimum.
• The concept of “Automation”has eixeted for many years.
• Home automation is has become the on of the upcoming field in recent era.
• The main automation is help to handicapped and old aged people.
• The efficient of technology for short range wireless communication IR
COMMUNICATION is used here to automate the system.
COMPONENTS

• RESISTORS:A resistor is a passive two-terminal electrical


component that implements electrical resistance as a circuit
element. In electronic circuits, resistors are used to reduce
current flow, adjust signal levels, to divide voltages, bias active
elements, and terminate transmission lines, among other uses
• LEDS:
• Light emitting diodes
• A typical infrared communication system requires an IR transmitter and an IR receiver. The
transmitter looks just like a standard LED, except it produces light in the IR spectrum instead of the
visible spectrum. If you have a look at the front of a TV remote, you’ll see the IR transmitter LED:

• The same type of LED is used in IR transmitter breakout boards for the Arduino. You can see it at
the front of this Keyes IR transmitter:
• The IR receiver is a photodiode and pre-amplifier that
converts the IR light into an electrical signal. IR receiver
diodes typically look like this
PROGRAMME

• #include <IRremote.h>

• const int RECV_PIN = 7;


• IRrecv irrecv(RECV_PIN);
• decode_results results;

• void setup(){
• Serial.begin(9600);
• irrecv.enableIRIn();
• irrecv.blink13(true);
• }
• void loop(){
• if (irrecv.decode(&results)){
• Serial.println(results.value, HEX);
• irrecv.resume();
• }
• }
CIRCUIT
STATEMENT OF PROBLEM:

• Electricity was discovered more than 200 years ago, but still now we are
operating switches manually. operation some times leads to danger of
electrical equipment.
• To avoid this problem, we are developed a IR based automation to control
any 1-phase electrical equipment remotely.
METHODOLOGY OF PROJECT:
ADVANTAGES:

• Prevent electrical shock.


• Easy to operate for old age and physically disabled people.
• This circuit can be operated up to a distance of 30 feet.
• Easy to operate to control the device in rainy conditions.
Dis advantages
• It supports shorter range and hence it performance
degrades with longer distances.
• Infrared waves at high power can damage eyes
• Infrared frequencies are affected by hard objects (e.g.
walls, doors) , smoke, dust, fog, sunlight etc. Hence it
does not work through walls or doors.
CONCLUSION:

• In Coclusion, this low cost system is designed to improve


the standard living in home and also it provides assistance
especially to disabled and elderly.
• The implementation of IR sensor in control board allows
the system installation in more simple way.

You might also like