The HC-SR04 is an ultrasonic distance sensor that measures the distance to objects using high-frequency sound waves (ultrasound). Think of it as a bat-like echo radar! π¦
π§ How It Works
- The TRIG pin sends a short pulse (10 microseconds).
- The module emits an ultrasonic burst at 40 kHz.
- If the sound wave hits an object, it reflects back.
- The ECHO pin goes HIGH for the duration it took the wave to bounce back.
- Arduino measures that time and calculates the distance.
π Distance Formula
distance_cm = (duration * 0.0343) / 2;
- Speed of sound: ~343 m/s = 0.0343 cm/Β΅s
- Divide by 2 because the sound travels to the object and back
π Pinout
Pin | Function |
---|---|
VCC | Power (5V) |
GND | Ground |
TRIG | Trigger signal input |
ECHO | Echo signal output |
βοΈ Arduino Code Example
const int trigPin = 9;
const int echoPin = 10;
void setup() {
Serial.begin(9600);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
}
void loop() {
// Clear the trigger
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Send a 10 Β΅s pulse
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Read the echo time
long duration = pulseIn(echoPin, HIGH);
// Calculate the distance
float distance = duration * 0.0343 / 2;
Serial.print("Distance: ");
Serial.print(distance);
Serial.println(" cm");
delay(500);
}
β Pros
- Super cheap π°
- Easy to use
- Accurate enough for most robotics
- Works on 5V β no logic level conversion needed
β οΈ Limitations
- Doesnβt work well with soft or absorbent surfaces (like cloth)
- Canβt detect transparent objects (like glass)
- Has a minimum range of ~2 cm
- Noisy environments can cause false readings
π€ Use Cases
- Obstacle-avoiding robots ππ‘
- Auto water level sensors
- DIY radar systems
- Motion detection
Wanna go further? I can show you:
- A real robot project using HC-SR04
- 3D-printed mount for it
- Comparison vs VL53L0X laser sensor
Just say the word! ππ