Ultrasonic Distance Measurement Using Arduino | How To Use Ultrasonic Sensor With Arduino UNO

Поделиться
HTML-код
  • Опубликовано: 26 авг 2024
  • ultrasonic distance measurement using Arduino | How to use an ultrasonic sensor with Arduino UNO
    In this video, we'll use an ultrasonic sensor with an Arduino UNO to measure the distance between two points.
    Ultrasonic sensors are great for a variety of applications, including distance measurement. By using an Arduino UNO, we'll be able to create a simple project that uses an ultrasonic sensor to measure distance. This project will be perfect for beginners learning about ultrasonic sensors and Arduino programming. In this video, we will use an ultrasonic sensor with Arduino UNO to measure the distance between two objects. We'll see how to set up the sensor, load the firmware, and use the LCD to measure the length.
    This project is excellent for beginners who want to learn how to use an ultrasonic sensor with Arduino UNO. By the end of this video, you'll have learned how to use an ultrasonic sensor, load the firmware, and measure the distance between two objects.
    I'd like you to please learn how to use an ultrasonic sensor with the Arduino UNO in this tutorial. Using the sensor, you'll be able to measure distances using the Arduino.
    In this tutorial, you'll learn how to use the ultrasonic sensor with the Arduino UNO. By using the sensor, you'll be able to measure distances and determine the size of objects. This is a great way to learn more about electronics and Arduino and to develop your engineering skills!
    Code : drive.google.c...
    ultrasonic distance measurement using arduino
    distance measurement using ultrasonic sensor and arduino with lcd display
    distance measurement using ultrasonic sensor arduino code
    how to make arduino based distance measurement using ultrasonic sensor
    distance measurement using arduino and hc-sr04 ultrasonic sensor
    distance measurement using ultrasonic sensor adn arduino with lcd display
    Distance measurement useing ultrasonic sensor arduino code
    arduino
    ultrasonic sensor
    hc-sr04

Комментарии • 59

  • @syedaqeelhassanraza5015
    @syedaqeelhassanraza5015 Год назад +5

    Ab toh yahi banana h sir ji ... Bohut asan h thank you ....

    • @TEKNOISTIX
      @TEKNOISTIX  Год назад +2

      +Syed aqeel hassan Raza Thanks for appreciating
      Keep supporting and share with your friends 😃

  • @sonalipatil4833
    @sonalipatil4833 Год назад +3

    Can you provide alternate library because l m getting error about liquid crystal library not found

  • @sishirdhakal1272
    @sishirdhakal1272 9 месяцев назад +4

    CODE:
    #include
    #include
    LiquidCrystal_I2C lcd(0x27, 16, 2);
    #define echoPin 4
    #define trigPin 3
    long duration, distance;
    void setup() {
    Serial.begin (9600);
    pinMode(trigPin, OUTPUT);
    pinMode(echoPin, INPUT);
    lcd.init();
    lcd.backlight();
    }
    void loop(){
    delay(150);
    digitalWrite(trigPin, LOW);
    delayMicroseconds(2);
    digitalWrite(trigPin, HIGH);
    delayMicroseconds(10);
    digitalWrite(trigPin, LOW);
    duration = pulseIn(echoPin, HIGH);
    distance = duration / 58.2;
    String disp = String(distance);
    lcd.clear();
    lcd.print("distance:");
    lcd.setCursor(0, 1);
    lcd.print(disp);
    lcd.print(" cm");
    }

  • @asvenesharma8777
    @asvenesharma8777 5 месяцев назад

    Its interesting. Can you make the unit measurement in mm or if possible can be converted in to cm or mm by a button press.
    Also, what is the minimum distance it can read, can it read a 1 mm distance?

  • @smitasingh3693
    @smitasingh3693 11 месяцев назад +1

    Sir please make a video on how to set an alarm running when an object reaches the limit distance 🙏

  • @AbdulMoiz.Entertainment
    @AbdulMoiz.Entertainment 9 месяцев назад

    Thank you soooooo much bro you are a intelligent🧠🧠🧠

  • @RebuildRoger
    @RebuildRoger Год назад

    Great work brother 👍

  • @mr.rananowactive2992
    @mr.rananowactive2992 Месяц назад

    Great work!

  • @marketanalysis1203
    @marketanalysis1203 Год назад

    Wow nice learning video 👍

    • @TEKNOISTIX
      @TEKNOISTIX  Год назад

      +Market Analysis Thanks for appreciating
      Keep supporting and share with your friends 😃

  • @saurabhsingh-hd1vn
    @saurabhsingh-hd1vn 8 месяцев назад +2

    Liquid crystal error a rha hai sir

  • @user-tr1oo4yu1b
    @user-tr1oo4yu1b 7 месяцев назад

    please do make a video about fingerprint sensor and put there lcd too

  • @pakfones
    @pakfones 11 месяцев назад

    It's mean the sensor can't measure the distance lower than 7CM, if yes the how can we get rid of this?

  • @user-ns4jw4om4u
    @user-ns4jw4om4u Год назад

    Sir aik video arrora shredder circuit py b banain plz k explain the circuit

  • @syedaqeelhassanraza5015
    @syedaqeelhassanraza5015 Год назад +1

    Thank you sir ji ❤

    • @TEKNOISTIX
      @TEKNOISTIX  Год назад

      +Syed aqeel hassan Raza Thanks for appreciating
      Keep supporting and share with your friends 😃

  • @sukhdevsingh4092
    @sukhdevsingh4092 Год назад

    Thanks

  • @qadeer1685
    @qadeer1685 Год назад

    Good video

    • @TEKNOISTIX
      @TEKNOISTIX  Год назад

      +Qadeer Thanks for appreciating
      Keep supporting and share with your friends 😃

  • @sraghavan5968
    @sraghavan5968 9 месяцев назад +3

    bro everything is working fine but the lcd board is not showing anything bexept blank green screen with 16 boxes which are 8*5 pixels

    • @TEKNOISTIX
      @TEKNOISTIX  9 месяцев назад +2

      There is a screw behind the display
      Try to rotate that
      That is for brightness

    • @watchers1
      @watchers1 Месяц назад

      I think you need to do some changes in code as x27 to x3f because it changes as per board type also check wheater you have installed the i2c library in the arduino

  • @elexshown2520
    @elexshown2520 Год назад

    Sir can we charge 12.6 Amp betry with 12.6 but 5amp chargers with bms inbuilt or we need to have same 2 amp charger ?

    • @SDP17
      @SDP17 Год назад

      U need 14v charger for full charging. For battery charging More amp = more charging speed, more speed = less life.

  • @vasutech4590
    @vasutech4590 9 месяцев назад

    How much range of distance it can measure

  • @desainamratha1395
    @desainamratha1395 9 месяцев назад

    thank uuuu soo much sir 😍😍😍
    this video had helped me very very much that i can't explain in words
    a proper explaination can be found here 👆👆👆

  • @smartboychannel9294
    @smartboychannel9294 8 месяцев назад +1

    Sir i want code......😟

  • @user-qf3ch1ed1p
    @user-qf3ch1ed1p 10 месяцев назад

    ok nice

  • @yogitagoyal2358
    @yogitagoyal2358 Месяц назад

    Sir screen cord
    and download code different hai

    • @TEKNOISTIX
      @TEKNOISTIX  Месяц назад

      Its a modified code will work properly

  • @pravinsingh5883
    @pravinsingh5883 Год назад +1

    Sir from where I will get code

    • @TEKNOISTIX
      @TEKNOISTIX  Год назад

      +pravin singh it will be available in description in few hours, you can chek back later

  • @user-bo4gs6lh4b
    @user-bo4gs6lh4b 8 месяцев назад

    my LCD display is not showing the distance , what could be possible reasons

    • @TEKNOISTIX
      @TEKNOISTIX  8 месяцев назад

      It is showing some characters?

    • @user-bo4gs6lh4b
      @user-bo4gs6lh4b 8 месяцев назад

      yes it is showing some characters @@TEKNOISTIX

  • @Rajdeepstyle
    @Rajdeepstyle Год назад

    Sir up na to coding ka link nehi he

  • @umargul5644
    @umargul5644 Год назад

    Great 👍

    • @TEKNOISTIX
      @TEKNOISTIX  Год назад +1

      +umar gul Thanks for appreciating
      Keep supporting and share with your friends 😃

  • @electricalwow
    @electricalwow Год назад

    Sir plz provide system code....plzzz🙏🙏

  • @youtubewarrior8342
    @youtubewarrior8342 Год назад

    Sir wher is code

  • @shanmugapriya9073
    @shanmugapriya9073 10 месяцев назад

    Sir my arduino uno doesn't connect to my pc please tell why

    • @TEKNOISTIX
      @TEKNOISTIX  10 месяцев назад

      Try to change arduino board

  • @robotics-in8hz
    @robotics-in8hz 9 месяцев назад

    sir can you please share the codes that have to be entered in arduino uno

    • @TEKNOISTIX
      @TEKNOISTIX  9 месяцев назад

      chek the link in description

  • @subodhshakya3166
    @subodhshakya3166 Год назад

    Sir ye component kanha milege

    • @TEKNOISTIX
      @TEKNOISTIX  Год назад

      +yara online amazon or local market

  • @devchaudhary5892
    @devchaudhary5892 11 месяцев назад

    Where is code?

  • @AssianHunter2.0
    @AssianHunter2.0 5 месяцев назад

    Sir code

  • @sciencemagic5784
    @sciencemagic5784 11 месяцев назад

    Sir please give code

  • @Piyushyadav41695
    @Piyushyadav41695 Год назад

    hellow sir code send kr dijiye

  • @TechFuture21stCentury
    @TechFuture21stCentury Год назад

    Good luck

    • @TEKNOISTIX
      @TEKNOISTIX  Год назад

      +TECH FUTURE 21ST CENTURY thanks

  • @Ashwin920
    @Ashwin920 Год назад

    Sir wher is code