Fast delivery within 24 to 72 Hours

HC-SR04 Ultrasonic Distance Sensor Module

55,00 EGP

    In stock

    1. Operating Voltage: 5 V
    2. Sonar Sensing Range: 2-400 cm
    3. Max. Sensing Range: 450 cm
    4. Frequency: 40 kHz

     

    In stock

    Estimated delivery dates: April 21, 2025 – April 24, 2025

    Shipping & Delivery

    • Local pickup

    Receipt from the place on the same day or shipping to nearby places

    On the same day

    6PM - 10 PM

    • Shipping company

    Delivery through a fast shipping company intermediary

    1-3 Days

    Frequently Bought Together

    55,00 EGP
    15,00 EGP
    70,00 EGP
    For 2 items

    Description

    The HC-SR04 is an ultrasonic distance sensor module that measures the distance to an object using sound waves. It provides accurate and reliable distance measurements, making it ideal for robotics, obstacle avoidance systems, and other applications requiring distance sensing.

    Key Features:

    • Measurement Range: 2 cm to 400 cm (2m)
    • Accuracy: Up to 3mm
    • Operating Voltage: 5V (compatible with most microcontrollers like Arduino, Raspberry Pi, etc.)
    • Operating Frequency: 40kHz (ultrasonic sound wave frequency)
    • Signal Type: Digital Output (Echo and Trigger pins for distance measurement)
    • Current Consumption: Low power consumption, typically around 15mA when idle and 20mA when active
    • Mounting Type: Easy to mount on robots or other projects with simple pin connections
    • Interface: 4-pin (VCC, GND, Trigger, Echo)

    Pinout:

    1. VCC: Power supply pin (5V)
    2. GND: Ground pin
    3. Trigger (Trig): Sends a pulse to initiate the measurement (usually a 10us HIGH pulse)
    4. Echo: Outputs the time it takes for the ultrasonic sound wave to return (used to calculate distance)

    Applications:

    • Robotics: Used for obstacle detection and avoidance in autonomous robots.
    • Distance Measurement: Ideal for measuring distances in projects requiring accurate and reliable distance readings.
    • Parking Sensors: Used in automotive applications for proximity detection.
    • Security Systems: Can be used for motion detection or proximity sensing in various security setups.
    • Automation: Helps with automatic systems that require distance sensing or positioning, such as object detection and counting.

    Benefits:

    • Simple to Use: Easy to interface with most microcontrollers like Arduino, Raspberry Pi, and others.
    • Affordable: Provides accurate distance measurements at an affordable price, making it perfect for hobbyists and DIY projects.
    • High Accuracy: Offers precision with distances as close as 2cm and up to 400cm, making it suitable for a wide range of applications.
    • Low Power Consumption: Efficient enough to be used in battery-powered projects, like mobile robots or drones.

    The HC-SR04 Ultrasonic Distance Sensor Module is a reliable and cost-effective solution for distance measurement and obstacle detection, making it a popular choice for robotics, automation, and other electronic projects.

    const int trigPin = 9;
    const int echoPin = 10;
    
    float duration, distance;
    
    void setup() {
      pinMode(trigPin, OUTPUT);
      pinMode(echoPin, INPUT);
      Serial.begin(9600);
    }
    
    void loop() {
      digitalWrite(trigPin, LOW);
      delayMicroseconds(2);
      digitalWrite(trigPin, HIGH);
      delayMicroseconds(10);
      digitalWrite(trigPin, LOW);
    
      duration = pulseIn(echoPin, HIGH);
      distance = (duration*.0343)/2;
      Serial.print("Distance: ");
      Serial.println(distance);
      delay(100);
    }

     

     

    Customer Reviews

    Specification

    Overview

    Weight Weight 9,0000 g

    Specification

    Model

    HC-SR04

    Operating Voltage (VDC)

    5

    Average Current Consumption (mA)

    2

    Frequency(Hz)

    40000

    Sensing Angle

    15°

    Max. Sensing Distance (cm)

    450

    Sensor Cover Dia. (mm)

    16

    PCB Size ( L x W ) mm

    45 x 20