Arduino Projects

Arduino IR Sensor & Buzzer Circuit diagram and Programming

Arduino IR Sensor & Buzzer, Example:

Arduino IR Sensor & Buzzer Circuit Diagram and Programming- In this example, I am going to explain how to use an IR sensor and Buzzer with the Arduino. You will need an IR sensor like this for obstacle detection, for making security systems, for making line following robots, and even for making contactless control systems like for example a doorbell etc.




Amazon Links:

Arduino Nano USB-C Type (Recommended)

allpcb circuit

*Disclosure: These are affiliate links. As an Amazon Associate I earn from qualifying purchases.



In this example, what I want to do is, I want the buzzer to turn ON when the IR sensor detects any object. Instead of controlling a buzzer, you can also control a relay to control high voltage AC and DC loads.

Anyway, this IR sensor has these two Infrared Leds, this white LED is used as the transmitter and this Black color LED is used as the receiver. It transmits the infrared light which reflects from an object and when the receiver LED detects the reflected light, it knows there is something in front of the sensor, and then it signals the Arduino.

This IR Sensor also has a Blue color Potentiometer which is used to set the range. It offers a long range when used against white color and reflective objects and it offer shorter range when used against black objects. That’s why the IR sensors are most frequently used in line follower robots. And you might have seen the black lines are usually drawn on a white paper or a surface that’s more reflective than the Black color.

This IR sensor has a total of three wires which are clearly labeled with VCC, GND, and OUT.

Arduino course

Connect the VCC and GND pins to the Arduino 5V and GND. Connect the Out pin to the Arduino Pin D10.

The buzzer is connected to the Arduino Pin D8 through a driver circuit consisting of 2n2222 NPN transistor and a 10Km resistor. And now let’s go ahead and take a look at the programming.



Arduino IR Sensor Programming:

I already explained in my previous example and I am sure now you can read this program and I am sure now you fully understand how to define variables and how to use these built-in functions.



Anyway, this program is quite similar to the digital input example in which I used a push button for reading the button clicks. And in that example I clearly explained about different sensors that gave 0 or 1 at the output. In that example I used the built-in pullup resistor. But this time I didn’t enable the pullup resistor because the IR sensor I am using pulls it to 5 volts.

When the sensor detects anything it gives 0 at the output and when there is nothing in front of the sensor then it gives 5 volts at the output. So, when the sensor gives you two states then there is no need to activate the pullup resistor. Rest of the program is almost the same. We simply read the pin status and then accordingly control the buzzer. I have commented all the instructions.

Arduino course

For the step by step explanation and practical demonstration watch the video tutorial given at the end of this article.



video tutorial

 

Engr Fahad

My name is Shahzada Fahad and I am an Electrical Engineer. I have been doing Job in UAE as a site engineer in an Electrical Construction Company. Currently, I am running my own YouTube channel "Electronic Clinic", and managing this Website. My Hobbies are * Watching Movies * Music * Martial Arts * Photography * Travelling * Make Sketches and so on...

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button