How To Make Arduino Based Car Reverse Parking Sensor

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ก.ย. 2018
  • In this Video you will learn how to make Arduino Based Car Reverse Parking Sensor
    Video Submitted by Joginder
    LIKE | SHARE | SUBSCRIBE FOR MORE VIDEOS LIKE THIS.
    More Related Videos
    Doll Blinking Eyes using Arduino UNO Board
    • Doll Blinking Eyes usi...
    Magnetic Levitating illuminated rotating Globe using Arduino - (Part 1)
    • Magnetic Levitating il...
    Repulsive Magnetic Levitation using Arduino - Simple Design
    • Repulsive Magnetic Lev...
    How To Make Arduino Magnetic Levitation - Simple Design
    • How To Make Arduino Ma...
    How to make propeller clock using Arduino uno
    • How to make propeller ...
    Make LED Propeller Display PCB - Part 2 - Soldering Components and Testing LED Propeller Display
    • Make LED Propeller Dis...
    Make LED Propeller Display PCB - Part 1- Printing, Etching using Ferric Chloride, Drilling Holes
    • Make LED Propeller Dis...
    89C52 based Water Level Indicator with Voice Alarm Project
    • 89C52 based Water Leve...
    Microcontroller 89C52 Based Hare Krishna Door Bell Circuit Diagram in Hindi
    • Microcontroller 89C52 ...
    Microcontroller 89C51 Based Chor Pakdo Theif Alarm Project in Hindi
    • Microcontroller 89C51 ...
    Microcontroller Based Ding Dong Door Bell Circuit Diagram - DIY
    • Microcontroller Based ...
    Propeller clock using 89C4051 and DS1307 - DIY Project
    • Propeller clock using ...
    How to Make a Speaker - DIY
    • Video
    How to make a simple Door Alarm (DIY)
    • How to make a simple D...
    Kits & Components Link
    amzn.to/3pJzHiY
    Water Level Monitor using NodeMCU
    • Water Level Monitor us...
    Experiment with NodeMCU ESP8266: Door Status Monitor
    • Experiment with NodeMC...
    Thanks for watching - www.hobbyprojects.com
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 20

  • @divyamruthagangireddy5206
    @divyamruthagangireddy5206 5 ปีที่แล้ว +1

    thank you sir its working

  • @andiselvam8407
    @andiselvam8407 4 ปีที่แล้ว +1

    Sir , why these code ???, it is feed to the ardiuno through computer or not

  • @knightking69
    @knightking69 4 ปีที่แล้ว +1

    But where can i find the link for programing it PLZZ reply

  • @amoghhatkar446
    @amoghhatkar446 4 ปีที่แล้ว

    WHAT IS THE USE OF THE DIODE AND THE TRANSISTOR (NPN) ?

  • @Aakash.6868
    @Aakash.6868 5 ปีที่แล้ว +2

    Plz explain the code so it will be easy to understand....

  • @dilshankasthuriarachchi4737
    @dilshankasthuriarachchi4737 3 ปีที่แล้ว

    Hellloooo dear could you please let me have the code and the schematic please?

  • @irfanalisiddiqui6082
    @irfanalisiddiqui6082 5 ปีที่แล้ว +2

    Please update the code

  • @HEBINRAJH
    @HEBINRAJH 4 ปีที่แล้ว

    Bro where can i download the code

  • @Luka-ov1hu
    @Luka-ov1hu 4 ปีที่แล้ว +2

    code

  • @Rynsm
    @Rynsm 4 ปีที่แล้ว +1

    Code ???

  • @Abdulmateenshah610
    @Abdulmateenshah610 4 ปีที่แล้ว

    Cost of total equipments include board in usd plz????

    • @brentleylegend8964
      @brentleylegend8964 3 ปีที่แล้ว

      A tip: you can watch series at InstaFlixxer. I've been using it for watching loads of movies lately.

    • @howarddominick3789
      @howarddominick3789 3 ปีที่แล้ว

      @Brentley Legend Yup, been using InstaFlixxer for years myself :)

  • @irinel.b
    @irinel.b 4 ปีที่แล้ว +1

    That is the full code?

  • @anushkakulkarni6089
    @anushkakulkarni6089 3 ปีที่แล้ว

    Sir iska code aachese de do na plz dikhai aacha nahi de Raha hai video plz

  • @skraj6294
    @skraj6294 7 หลายเดือนก่อน

    const int trigPin = 9;
    const int echoPin = 8;
    const int buzzPin = 7;
    long duration;
    float distance;
    void setup()
    {
    pinMode(trigPin, OUTPUT);
    pinMode(echoPin, INPUT);
    pinMode(buzzPin, OUTPUT);
    }
    void loop()
    {
    digitalWrite(trigPin, LOW);
    delayMicroseconds(2);
    digitalWrite(trigPin, HIGH);
    delayMicroseconds(10);
    digitalWrite(trigPin, LOW);
    duration = pulseIn(echoPin, HIGH);
    distance = 0.034*(duration/2);
    if (distance < 100)&& (distance > 9)
    {
    digitalWrite(buzzPin,HIGH);
    delay(100)
    digitalWrite(buzzPin,LOW;
    delay(distance*5)
    }
    else
    if(distance > 10)
    {
    digitalWrite(buzzPin,HIGH)
    }
    else
    {
    digitalWrite(buzzPin,LOW);
    }
    }

  • @angadsingharora4903
    @angadsingharora4903 4 ปีที่แล้ว +6

    const int trigPin = 9;
    const int echoPin = 8;
    const int buzzPin = 7;
    long duration;
    float distance;
    void setup()
    {
    pinMode(trigPin, OUTPUT);
    pinMode(echoPin, INPUT);
    pinMode(buzzPin, OUTPUT);
    }
    void loop()
    {
    digitalWrite(trigPin, LOW);
    delayMicroseconds(2);
    digitalWrite(trigPin, HIGH);
    delayMicroseconds(10);
    digitalWrite(trigPin, LOW);
    duration = pulseIn(echoPin, HIGH);
    distance = 0.034*(duration/2);
    if (distance < 100)&& (distance > 9)
    {
    digitalWrite(buzzPin,HIGH);
    delay(100)
    digitalWrite(buzzPin,LOW;
    delay(distance*5)
    }
    else
    if(distance > 10)
    {
    digitalWrite(buzzPin,HIGH)
    }
    else
    {
    digitalWrite(buzzPin,LOW);
    }
    }