Arduino - Ultrasonic Sensor
Hardware Required
1 | × | Arduino UNO or Genuino UNO | |
1 | × | USB 2.0 cable type A/B | |
1 | × | Ultrasonic Sensor | |
4 | × | Jumper Wires |
About Ultrasonic Sensor
Ultrasonic sensor HC-SR04 is used to measure the distance to an object by using ultrasonic waves.
Pinout
The ultrasonic sensor HC-SR04 includes four pins:
- VCC pin needs to be connected to VCC (5V)
- GND pin needs to be connected to GND (0V)
- TRIG pin this pin receives the control signal (pulse) from Arduino.
- ECHO pin this pin sends a signal (pulse) to Arduino. Arduino measures the duration of pulse to calculate distance.

How It Works
- Micro-controller: generates a 10-microsecond pulse on the TRIG pin.
- The ultrasonic sensor automatically emits the ultrasonic waves.
- The ultrasonic wave is reflected after hitting an obstacle.
- The ultrasonic sensor:
- Detects the reflected ultrasonic wave.
- Measures the travel time of the ultrasonic wave.
- Ultrasonic sensor: generates a pulse to the ECHO pin. The duration of the pulse is equal to the travel time of the ultrasonic wave.
- Micro-controller measures the pulse duration in the ECHO pin, and then calculate the distance between sensor and obstacle.
How to Get Distance From Ultrasonic Sensor
To get distance from the ultrasonic sensor, we only need to do two steps (1 and 6 on How It Works part)
- Generates a 10-microsecond pulse on TRIG pin
- Measures the pulse duration in ECHO pin, and then calculate the distance between sensor and obstacle
Distance Calculation
We have:
- The travel time of the ultrasonic wave (µs): travel_time = pulse_duration
- The speed of the ultrasonic wave: speed = SPEED_OF_SOUND = 340 m/s = 0.034 cm/µs
So:
- The travel distance of the ultrasonic wave (cm): travel_distance = speed × travel_time = 0.034 × pulse_duration
- The distance between sensor and obstacle (cm): distance = travel_distance / 2 = 0.034 × pulse_duration / 2 = 0.017 × pulse_duration
Arduino - Ultrasonic Sensor
Arduino's pins can generate a 10-microsecond pulse and measure the pulse duration. Therefore, we can get the distance from the ultrasonic sensor by using two Arduino's pins:
- One pin is connected to TRIG PIN to generate 10µs pulse to TRIG pin of the sensor
- Another pin is connected to ECHO PIN measure pulse from the sensor
Wiring Diagram

Image is developed using Fritzing. Click to enlarge image
How To Program For Ultrasonic Sensor
- Generate a 10-microsecond pulse in Arduino's pin by using digitalWrite() and delayMicroseconds() functions. For example, pin 9:
- Measures the pulse duration (µs) in Arduino's pin by using pulseIn() function. For example, pin 8:
- Calculate distance (cm):
Arduino Code
Quick Steps
- Copy the above code and open with Arduino IDE
- Click Upload button on Arduino IDE to upload code to Arduino
- Open Serial Monitor
- Move your hand in front of ultrasonic sensor
- See the distance from the sensor to your hand on Serial Monitor

Code Explanation
Read the line-by-line explanation in comment lines of code!
Video Tutorial
We are considering to make the video tutorials. If you think the video tutorials are essential, please subscribe to our YouTube channel to give us motivation for making the videos.
Challenge Yourself
Use ultrasonic sensor to do one of the following projects:
- Collision avoidance for RC car.
- Detecting the fullness of dustbin.
- Monitoring level of the dustbin.
- Automatically open/close the dustbin. Hint: Refer to Arduino - Servo Motor.
Additional Knowledge
Some manufacturers provide the ultrasonic sensor that has 3 pins. TRIG signal and ECHO signal are in the same pin. In this case, we need to use only one Arduino's pin for both purposes: generating a pulse to the sensor and measuring pulse from the sensor.
Alternative Ultrasonic Sensors
The above code also works with the following ultrasonic sensor:
Ultrasonic Sensor on Commercial Products
- Otto DIY Robot Builder Kit
Ultrasonic Sensor Applications
- Collision Avoidance
- Fullness Detection
- Level Measurement
- Proximity Detection