Arduino ultrasonic sensor with serial monitor

Table of Contents

AIM

Measure the distance using Ultrasonic Sensor. The distance shows in serial monitor

WORKING PRINCIPLE OF ULTRASONIC SENSOR

An Ultrasonic Sensor is a device that measures distance to an object using Sound Waves. It works by sending out a sound wave at ultrasonic frequency and waits for it to bounce back from the object. Then, the time delay between transmission of sound and receiving of the sound is used to calculate the distance.

serial monitor

It is done using the formula Distance = (Speed of sound * Time delay) / 2

We divide the distance formula by 2 because the sound waves travel a round trip i.e from the sensor and back to the sensor which doubles the actual distance.

The HC-SR04 is a typical ultrasonic sensor which is used in many projects such as obstacle detector and electronic distance measurement tapes. In this Instructable I’ll teach you how to interface the HC-SC04 with an Arduino Uno.

To interface an Ultrasonic Sensor with an Arduino and view the distance on the serial monitor you’ll need:

serial monitor
  • Arduino Uno
  • HC-SR04 Module
  • Jumper wires

The HC-SR04 is an ultrasonic ranging module. This economical sensor provides 2cm to 400cm of non-contact measurement functionality with a ranging accuracy that can reach up to 3mm. Each HC-SR04 module includes an ultrasonic transmitter, a receiver and a control circuit.

There are Four Pins on the HC-SR04. They are :

  • Vcc (5V supply)
  • Gnd (Ground)
  • Trig (Trigger)
  • Echo (Receive)

The key features to be noted are:

  • Operating Voltage: 5V DC
  • Operating Current: 15mA
  • Measure Angle: 15°
  • Ranging Distance: 2cm – 4m

Step 3: The Arduino Serial Monitor

The Serial Monitor is a part of the Arduino IDE. It is also available in the Web IDE. It allows you to send and receive data from the board connected via USB. This is using the concept of Serial Communication.

You can send the commands by typing in the window on the top and pressing ‘Enter’ or clicking ‘Send’. The data from the board is displayed below that.

This is very useful when debugging the code, or if you need to give inputs to the board, This is probably the most useful tool in the IDE. The more you use it, the better you get at testing complex projects that takes inputs and provides consequent outputs.

Step 4: The Circuit

serial monitor

The connections are as follows:

  • Vcc to 5V Pin of the Arduino.
  • Gnd to Gnd Pin of the Arduino.
  • Trig to Digital Pin 9.
  • Echo to Digital Pin 10.
serial monitor

Refer the schematics for more clarity on the connections.

Few things to remember while building the circuit

  • Avoid placing the sensor on metal surfaces to avoid short circuits which might burn the sensor.
  • It is recommended to put electrical tape on the back side of the sensor.
  • You can also directly connect the Ultrasonic sensor to the Arduino with jumper wires directly

BEST EXAMPLES OF AN ULTRASONIC SENSOR

  • Box Sorting using a Multi-Transducer System.
  • Easy Control of Trash Collection Vehicles.
  • Pallet Detection with Forklifts.
  • Bottle Counting on Drink Filling Machines.

 THE USE OF THE ULTRASONIC SENSOR

  • The Ultrasonic Sensor is used for calculating the distance between the sensor and the object.
  • It is mostly used for calculating the acceleration, velocity and position of the sensor attached to the device.

Also Read

Let us Learn about IP Address?

TOP 10 Popular java frameworks to learn in 2021

Share This Article

Share on facebook
Facebook
Share on twitter
Twitter
Share on linkedin
LinkedIn
Share on whatsapp
WhatsApp

IEEE Software Project Titles

IEEE Hardware Project Titles

Related Articles

Strydoprojects