
IR Sensor Interfacing with Arduino
What is IR Sensor?
An IR sensor is a device that measures the Infrared radiation in its surroundings and gives an electric signal as an output. An IR sensor can measure the heat of an object as well as can detect the motion of the objects.
IR technology is used in our day-to-day life and also in industries for different purposes. For example, TVs use an IR sensor to understand the signals which are transmitted from a remote control. The main benefits of IR sensors are low power usage, their simple design & their convenient features. IR signals are not noticeable by the human eye. The IR radiation in the electromagnetic spectrum can be found in the regions of the visible & microwave. Usually, the wavelengths of these waves range from 0.7 Β΅m to 1000Β΅m. The IR spectrum can be divided into three regions near-infrared, mid, and far-infrared. The near IR regionβs wavelength ranges from 0.75 β 3Β΅m, the mid-infrared regionβs wavelength ranges from 3 to 6Β΅m & the far IR regionβs infrared radiationβs wavelength is higher than 6Β΅m.
As the Infrared Radiation is invisible to our eyes, it can be detected by the Infrared Sensor. An IR sensor is a photodiode that is sensitive to IR light. When IR light falls on the photodiode, the resistances and the output voltages will change in proportion to the magnitude of the IR light received.
Types of IR Sensors
- Active IR Sensor.
- Passive IR Sensor.
1. Active IR Sensor
Active infrared sensors both emit and detect infrared radiation. Active IR sensors have two parts: a light-emitting diode (LED) as an Infrared Radiation transmitter and a Photodiode as an Infrared Radiation receiver. When an object comes close to the sensor, the infrared light from the LED reflects off of the object and is detected by the receiver. Active IR sensors act as proximity sensors, and they are commonly used in obstacle detection systems (such as in robots).
2. Passive IR Sensor
Passive infrared (PIR) sensors only detect infrared radiation and do not emit it from an LED. PIR sensors are most commonly used in motion-based detection, such as in-home security systems. When a moving object that generates infrared radiation enters the sensing range of the detector, the difference in IR levels between the two pyroelectric elements is measured. The sensor then sends an electronic signal to an embedded computer, which in turn triggers an alarm.
How Does an IR Sensor Module Work
Β
Β
As we know till now that the active IR Sensors emit Infrared waves and as-well-as detect the Infrared ways. The IR sensor module exactly works on the same phenomenon. The IR Sensor module contains an Infrared LED and an infrared photodiode.Β
Β
Infrared LED
The Infrared LED looks the same as a normal LED. But the Infrared LED emits light that is invisible to the naked eyes. Whenever the electricity is given to the Infrared LED. it emits infrared light.
Infrared Photodiode
The IR photodiode will be black in color as shown in the picture above. Whenever Infrared waves are applied to the Infrared photodiode, in result the Infrared photodiode changes its resistance, which causes a change in the output voltages.
InterfacingΒ IR Sensor Module with Arduino
Hardware Required
We need the following components:
Β
Building Circuit IR Sensor and Arduino
5V pin of the Arduino |
VCC pin of IR Sensor module |
GND pin of Arduino |
GND pin of IR sensor module |
Pin 10 of Arduino |
OUT pin of IR sensor module |
Pin 13 of Arduino |
One of the pins of Resistor |
Empty pin of ResistorΒ |
Positive pin of the LED |
Negative pin of the LEDΒ |
GND pin of Arduino |
Once, the connection are made as per the given steps above, letβs write a code and upload it to the Arduino board.
Arduino Code for Interfacing IR Sensor Module with Arduino
int LEDpin = 13; |
Uploading the code to the Arduino board:
Step 1: Connect the Arduino board with the computer using a USB cable.
Step 2: Next type the code mentioned above.
Step 3: Select the right board and port.
Step 4: Upload the code to the Arduino.
Step 5: The LED will glow when any obstacle is detected by the IR sensor.
Code Explanation:Β
Firstly, the pins are declared using an int datatype variable LED and assigned pin 13 to it. And created one more int variable obstaclePin and assigned pin 10 to it, And by using an integer type variable hasObstacle we are declaring the state of an obstacle as LOW by default.
int LEDpin = 13;
int obstaclePin = 10;
int hasObstacle = LOW;Β // LOW MEANS NO OBSTACLE
Β
Next we have a void setup() function. The void setup function runs only once in the program. In the void setup() function, we will declare the pins as output or input to the Arduino by using the pinMode function. In the pinMode function, the devices connected to Arduino is either input or output device. In the code, we have 2 pinMode functions in which we are declaring LED as OUTPUT and IR pin i.e., obstaclePin as INPUT. And we have Serial.begin function, this is used to tell Arduino that to start data transmission between Arduino and the computer.
void setup() {
Β Β pinMode(LEDpin, OUTPUT);
Β Β pinMode(obstaclePin, INPUT);
Β Β Serial.begin(9600);
}
Β
Next, we have void loop() function, which runs infinitely in the program. In the void loop() function, first, we are reading the data from the output pin of the IR sensor by using the digitalRead function, the digitalRead function checks the obstaclePin for whether it is HIGH or LOW (1 or 0).
Β
Next, we have an if-else statement. In the if statement we are telling Arduino to turn ON the LED when the IR sensor detects any obstacle and display βStop something is aheadβ on the serial monitor. The obstaclePin becomes HIGH when an obstacle is detected by the IR sensor. In the else statement, we are telling Arduino to keep LED OFF when there is no obstacle and to display βpath is clearβ on the Serial monitor.
void loop() {
Β Β hasObstacle = digitalRead(obstaclePin);
Β Β if (hasObstacle == HIGH) {
Β Β Β Β Serial.println("Stop something is ahead!!");
Β Β Β Β digitalWrite(LEDpin, HIGH);
Β Β }
Β Β else {
Β Β Β Β Serial.println("Path is clear");
Β Β Β Β digitalWrite(LEDpin, LOW);
Β Β }
Β Β delay(200);
}
Conclusion:
In this blog we haveΒ learned, IR sensors are incredibly versatile and can be used for a variety of applications, from detecting motion to measuring temperature. With different types of IR sensors available, it's essential to choose the right one for your project. By understanding how an IR sensor module works and learning how to interface it with an Arduino board, you can easily incorporate this technology into your next project. By following the code explanation and uploading it to your Arduino board, you'll be up and running in no time! Whether you're a seasoned electronics enthusiast or just starting, the possibilities are endless with IR sensors. So why not get started today and see what you can create with this exciting technology!
Β
Β
If you appreciate our work don't forget to share this post and leave your opinion in the comment box.
Β
Please do check out otherΒ blog postsΒ about ArduinoΒ Interfacing ACS712 with ArduinoΒ ,Β Arduino Interfacing with Ultrasonic SensorΒ ,Β LED Interfacing with ArduinoΒ ,Β Interfacing GSM Module with ArduinoΒ ,Β Interfacing MAX30100 Pulse Oximeter with ArduinoΒ ,Β How to connect ZMPT101B to ArduinoΒ andΒ Β How to use Buzzer with Arduino.
Β
Make sure you check out our wide range ofΒ products and collectionsΒ (we offer some excitingΒ deals!)
Frequently Asked Questions
1.How do I connect 2 IR sensors to Arduino?
We can connect 2 IR sensors output to any digital pin of Arduino and can write a code for the obstacle detection system. For example: In remote-controlled cars, we can implement 2 IR sensors on the left and right sides of the car. In code, we can write as, if an obstacle is detected in left, turn right. Else if detected on the right side, turn left.
2. How does an IR sensor work in Arduino?
The IR sensor gives an electrical signal as an output when an object comes in front of it. By using the output electrical signal, the Arduino can decide whether there is an obstacle or not.
3. What is IR sensor in Arduino?
An IR sensor, also known as an infrared sensor, is a device that senses infrared radiation present in the environment and produces an electrical signal as an output. It is utilized for detecting an object's motion or measuring various aspects of the surroundings. In Arduino, IR sensors are popularly employed for numerous projects. The IR sensor module comprises of an IR LED emitter and an IR photodiode detector.
4. What does an IR sensor do?
An electronic device known as an IR sensor or infrared sensor detects and measures a specific type of electromagnetic radiation called infrared radiation in its surrounding environment. Unlike visible light but shorter than radio waves, infrared radiation has a longer wavelength. IR sensors find utility in a variety of applications such as temperature measurement devices, motion detectors, and alarm systems. Depending on the type of IR sensor, it may emit infrared radiation to detect nearby objects or receive radiation emitted by objects to determine their temperature or other characteristics.
Components and Supplies
Frequently Asked Questions
1.How do I connect 2 IR sensors to Arduino?
We can connect 2 IR sensors output to any digital pin of Arduino and can write a code for the obstacle detection system. For example: In remote-controlled cars, we can implement 2 IR sensors on the left and right sides of the car. In code, we can write as, if an obstacle is detected in left, turn right. Else if detected on the right side, turn left.
2. How does an IR sensor work in Arduino?
The IR sensor gives an electrical signal as an output when an object comes in front of it. By using the output electrical signal, the Arduino can decide whether there is an obstacle or not.
3. What is IR sensor in Arduino?
An IR sensor, also known as an infrared sensor, is a device that senses infrared radiation present in the environment and produces an electrical signal as an output. It is utilized for detecting an object's motion or measuring various aspects of the surroundings. In Arduino, IR sensors are popularly employed for numerous projects. The IR sensor module comprises of an IR LED emitter and an IR photodiode detector.
4. What does an IR sensor do?
An electronic device known as an IR sensor or infrared sensor detects and measures a specific type of electromagnetic radiation called infrared radiation in its surrounding environment. Unlike visible light but shorter than radio waves, infrared radiation has a longer wavelength. IR sensors find utility in a variety of applications such as temperature measurement devices, motion detectors, and alarm systems. Depending on the type of IR sensor, it may emit infrared radiation to detect nearby objects or receive radiation emitted by objects to determine their temperature or other characteristics.