Tuesday, June 11, 2019

HC-SR04 Ultrasonic sensor and STM32

Description

Ultrasonic ranging module HC – SR04 provides 2cm – 400cm non-contact measurement function, the ranging accuracy can reach to 3mm. The modules includes ultrasonic transmitters, receiver and control circuit. 
Today in this tutorial we are going to learn How to interface HC-SR04 Ultrasonic sensor module with STM32.

WORKING

Working of hcsr04 is pretty simple and straight. 
The module emits an ultrasound at 40 KHz which, after reflecting from obstacle, bounces back to the module. By using the travel time and the speed of the sound, we can calculate the distance between the sensor and the obstacle.

HOW TO

According to the datasheet of hc-sr04, the following is required to be done :-
  • Keep the pin HIGH for at least 10us
  • The Module will now send 8 cycle burst of ultrasound at 40 kHz and detect whether there is a pulse signal back
  • IF the signal returns, module will output a HIGH PULSE whose width will be proportional to the range of the object.
  • Distance can be calculated by using the following formula :- range = high level time * velocity (340m/s) / 2
  • We can also use uS / 58 = Distance in cm or uS / 148 = distance in inch 
  • It is recommended to wait for at least 60ms before starting the operation again.
Timing diagram of HC-SR04

Connection



CODE




No comments:

Post a Comment

Back to Top