How to make blind person glasses | ultrasonic glasses | Arduino project

Поділитися
Вставка
  • Опубліковано 19 вер 2024
  • In this video I will show how to make an Ultrasonic sensor smart glasses for blind persons using Arduino very easily at home.
    Please Subscribe to my channel and also press the bell icon so you will never miss out any new update about my new videos.
    Source code : - drive.google.c...
    Components : -
    1×Arduino Nano
    1×Ultrasonic sensor
    1×Buzzer
    1×Glasses (You can use any type of glasses)

КОМЕНТАРІ • 11

  • @homeswl9178
    @homeswl9178 2 роки тому +1

    Nice work

  • @Sports27-633
    @Sports27-633 Рік тому

    Mitra circuit diagram dyun dere kasa karayc aahe samjat nahi aahe pan tuzyat khup talent aahe 👌👌

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

    Cool❤️

  • @crazyinlove1556
    @crazyinlove1556 Рік тому +1

    can you take a video on where to connect the wires

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

      All wiring pins are mentioned in the video. I have displayed in writing

  • @norsssss8688
    @norsssss8688 2 роки тому +2

    Can you give me the code please ?

  • @airajoyajero5393
    @airajoyajero5393 2 роки тому +1

    Do you have a circuit diagram?🥺🙏

  • @WhiteDevil-lr8wu
    @WhiteDevil-lr8wu Рік тому

    why saw thobda huh

  • @EG_KILLER
    @EG_KILLER 7 місяців тому

    //Hitec ELECTRONICS
    int buzzer=13;//buzzer at pin D13
    const int trigPin = 12;// trigpin at D12
    const int echoPin = 11;// echopin at D11
    // defines variables
    long duration;
    int distance;
    void setup() {
    pinMode(buzzer, OUTPUT);
    pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
    pinMode(echoPin, INPUT); // Sets the echoPin as an Input
    Serial.begin(9600); // Starts the serial communication
    }
    void loop() {
    // Clears the trigPin
    digitalWrite(trigPin, LOW);
    delayMicroseconds(2);
    // Sets the trigPin on HIGH state for 10 micro seconds
    digitalWrite(trigPin, HIGH);
    delayMicroseconds(10);
    digitalWrite(trigPin, LOW);
    // Reads the echoPin, returns the sound wave travel time in microseconds
    duration = pulseIn(echoPin, HIGH);
    // Calculating the distance
    distance= duration*0.034/2;
    // Prints the distance on the Serial Monitor
    Serial.print("Distance in (cm) = ");
    Serial.println(distance);
    if (distance

    • @EG_KILLER
      @EG_KILLER 7 місяців тому

      Is it ok?? Please reply fast

    • @EG_KILLER
      @EG_KILLER 7 місяців тому

      And give the wire connection