The HC-SR05 is an ultrasonic sensor used for distance measurement. It emits an ultrasonic wave and measures the time it takes for the echo to return, allowing it to calculate the distance to an object. This sensor is widely used in various applications such as robotics, obstacle avoidance systems, and distance measurement tools.
Parameter | Value |
---|---|
Operating Voltage | 5V DC |
Operating Current | 15mA |
Measuring Range | 2cm to 400cm |
Measuring Angle | 15 degrees |
Frequency | 40kHz |
Resolution | 0.3cm |
Trigger Input Pin | 10µs TTL pulse |
Echo Output Pin | Output pulse width proportional to distance |
Pin Name | Pin Number | Description |
---|---|---|
VCC | 1 | Power supply (5V) |
Trig | 2 | Trigger input pin |
Echo | 3 | Echo output pin |
GND | 4 | Ground |
// Define pins for the HC-SR05 sensor
const int trigPin = 9;
const int echoPin = 10;
// Define variables for duration and distance
long duration;
int distance;
void setup() {
// Initialize serial communication at 9600 baud rate
Serial.begin(9600);
// Set trigPin as OUTPUT and echoPin as INPUT
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
}
void loop() {
// Clear the trigPin by setting it LOW
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Set the trigPin HIGH for 10 microseconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Read the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculate the distance
distance = duration * 0.034 / 2;
// Print the distance on the Serial Monitor
Serial.print("Distance: ");
Serial.print(distance);
Serial.println(" cm");
// Wait for 60 milliseconds before the next loop
delay(60);
}
By following these guidelines and best practices, you can effectively use the HC-SR05 ultrasonic sensor in your projects for accurate distance measurement.