HC-SR04 Ultrasonic Distance Sensor and Arduino (Lesson #9)

Поділитися
Вставка
  • Опубліковано 1 лип 2024
  • Science Buddies Electronics Kit for Arduino: www.homesciencetools.com/prod...
    Learn how to use the HC-SR04 ultrasonic distance sensor, also called a sonar sensor, to measure the distance to a nearby object using an Arduino. We have a separate video that covers the PING))) ultrasonic distance sensor: • PING Ultrasonic Distan... . See our complete playlist of Arduino tutorials here: • How to Use an Arduino and the Science Buddies website for cool science projects you can do with an Arduino: www.sciencebuddies.org/search....
    0:00 intro
    0:48 Arduino connections
    1:05 datasheet
    2:00 code
    4:35 comparing the HC-SR04 and the PING
    Science Buddies also hosts a library of instructions for over 1,500 other hands-on science projects, lesson plans, and fun activities for K-12 parents, students, and teachers! Visit us at www.sciencebuddies.org to learn more.
    #STEM #sciencebuddies #arduino #electronics #programming
    *******************************
    Connect with Science Buddies:
    TWITTER: / sciencebuddies
    FACEBOOK: / sciencebuddies
    INSTAGRAM: / scibuddy
    PINTEREST: / sciencebuddies

КОМЕНТАРІ • 33

  • @hazelfunnehfangirl5hamburg805
    @hazelfunnehfangirl5hamburg805 8 місяців тому +3

    thank u helped me before getting killed in the program class dude for forgetting to save the process

  • @thesuitedsaltshaker8388
    @thesuitedsaltshaker8388 Рік тому

    thank you man, helped me a lot

  • @k0rnluvr
    @k0rnluvr Рік тому

    Great vid! thanks

  • @motomichinakamura6413
    @motomichinakamura6413 3 місяці тому +1

    Is there any enclosure or casing available for this setting?

  • @Pet-vk3ig
    @Pet-vk3ig 3 місяці тому

    Nice, good job

  • @maximarkhipov2186
    @maximarkhipov2186 3 місяці тому +1

    Thanks for the detailed and easy to understand video helped me a lot !!

  • @yehonatankalandarev6343
    @yehonatankalandarev6343 6 місяців тому +2

    I want to make a disc shooter that can be attached to the arm, and I want to add a control system to it, basically when the palm "blocks" the shot, the disc shooter will not fire.
    So I thought to connect this sensor to perform this operation, do you think it is correct? Does it suit my needs?

    • @Science.Buddies
      @Science.Buddies  6 місяців тому +1

      This sensor would work to detect when an object is within a certain distance. Please see our other Arduino tutorials linked in the description of this video.

  • @Studs_Studio
    @Studs_Studio 4 місяці тому +1

    this is amazing! i made it so if youre too close a buzzer starts beeping. i want to use this on an rc car to automaticly stop

    • @Science.Buddies
      @Science.Buddies  4 місяці тому

      Check out the rest of our tutorials and videos on our channel, we have instructions for autonomous/RC robots as well!

  • @Howdy-Harry
    @Howdy-Harry Місяць тому

    Amazing

  • @adityamandal2456
    @adityamandal2456 Рік тому +2

    In your Automatic Braking project using Ultrasonic sensor, I have changed the PING))) sensor to HCSR04. But there's a line in the code saying
    distance = readUltrasonic(pingPin)
    Now how to change that👆

    • @Science.Buddies
      @Science.Buddies  Рік тому +1

      The program in that project uses a function to read the ultrasonic sensor instead of putting all of the code directly in the loop() function. So, you would need to change the function to use two pins instead of one. For example, the call to the function could be distance = readUltrasonic(trigPin, echoPin) and then the first line of the function would be long readUltrasonic(int pin1, int pin2). You would then change the code in the function to use pin1 (corresponding to trigPin) and pin2 (corresponding to echoPin). We're glad that you asked about this because I realized there is actually an error in the existing example program - the way it's written now, the readUltrasonic function should use the "pin" variable inside the function, not "pingPin." so for example the line pinMode(pingPin, OUTPUT); should be pinMode(pin, OUTPUT). Hope that helps! We will update the example code.

    • @adityamandal2456
      @adityamandal2456 Рік тому

      @@Science.Buddies Thanks for the information 👍

  • @CoolOjas02
    @CoolOjas02 Рік тому +3

    Code?
    Can you give doc

  • @bfuh_055
    @bfuh_055 29 днів тому

    Does this sensor also detect the intensity of the reflected wave?

    • @Science.Buddies
      @Science.Buddies  28 днів тому

      No, it only detects how long it took the wave to bounce back.

  • @MotomichiStudio
    @MotomichiStudio 3 місяці тому

    How far can the sensor work in terms of distance?

    • @itsnd64
      @itsnd64 3 місяці тому

      ~400cm

  • @joshhallwatp3783
    @joshhallwatp3783 2 місяці тому

    Also saying pinmode was not declared in this scope

  • @imahumanbe1ng
    @imahumanbe1ng 2 місяці тому +1

    does this work with arduino maker uno x???

    • @Science.Buddies
      @Science.Buddies  2 місяці тому +1

      We haven't used the Maker Uno X but it is listed as fully compatible with the Arduino Uno R3, so it should.

  • @jomfawad9255
    @jomfawad9255 23 дні тому

    does it work outdoor if theres sunlight?

    • @Science.Buddies
      @Science.Buddies  22 дні тому

      Yes, this sensor uses ultrasonic sound and should not be affected by lighting conditions (with the caveat that the speed of sound depends on air temperature, so that can indirectly affect the readings, but the sensor will still work).

  • @gauthierwouters2593
    @gauthierwouters2593 Рік тому

    how to do the lights?

    • @Science.Buddies
      @Science.Buddies  Рік тому

      If you check out our Arduino tutorial playlist (linked in the description) you will find other videos about controlling LEDs.

  • @joshhallwatp3783
    @joshhallwatp3783 2 місяці тому

    When writing the exact same code it comes up with trigpin was not declared in this scope pinmode

    • @Science.Buddies
      @Science.Buddies  2 місяці тому +1

      The Arduino code is case sensitive, make sure your code matches the example exactly (pinMode and trigPin)

    • @joshhallwatp3783
      @joshhallwatp3783 2 місяці тому

      @@Science.Buddies yeah forgot the capital for M

  • @Sabbir-ln3bx
    @Sabbir-ln3bx 2 місяці тому

    how do you use it with LEDs?

    • @Science.Buddies
      @Science.Buddies  2 місяці тому

      Please see our Arduino tutorial playlist which covers LEDs: ua-cam.com/play/PLlBVuTSjOrclb0iCMSRpS_H1lSrlSVeEm.html&si=cyCw5jX3CNvyX5me

  • @Zemabri
    @Zemabri 15 днів тому

    im using this against my dog, not for a distance sensor