How to make a Smart cap 🧢 for blind person using arduino uno || Arduino uno project || 😍😍

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ม.ค. 2025

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

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

    MashaALLAH ❤

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

    Well-done ❤

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

    Well done

  • @SPIDERBHAI-i
    @SPIDERBHAI-i หลายเดือนก่อน +2

    Hlo you pdf is not opening in my phone can u give me screenshot

    • @Iphone2007kl
      @Iphone2007kl หลายเดือนก่อน +2

      #define trigPin 9
      #define echoPin 10
      #define buzzerPin 8
      void setup() {
      pinMode(trigPin, OUTPUT);
      pinMode(echoPin, INPUT);
      pinMode(buzzerPin, OUTPUT);
      Serial.begin(9600);
      }
      void loop() {
      long duration, distance;
      // Send an ultrasonic pulse to measure distance
      digitalWrite(trigPin, LOW);
      delayMicroseconds(2);
      digitalWrite(trigPin, HIGH);
      delayMicroseconds(10);
      digitalWrite(trigPin, LOW);
      // Measure the time it takes for the pulse to return
      duration = pulseIn(echoPin, HIGH);
      // Calculate distance in centimeters
      distance = (duration / 2) / 29.1;
      // Check the distance
      if (distance < 10) {
      // If an obstacle is detected within 20cm, sound the buzzer
      digitalWrite(buzzerPin , HIGH);
      delay(500); // Buzzer on for half a second
      digitalWrite(buzzerPin , LOW);
      }
      // Print the distance to the serial monitor for debugging
      Serial.print("Distance: ");
      Serial.print(distance);
      Serial.println(" cm");
      delay(100); // Wait for a short time before the next measurement
      }

    • @ERRORGAMEINGTAMIZHAN
      @ERRORGAMEINGTAMIZHAN 10 วันที่ผ่านมา

      Bro but also the trigpin​ comes ERROR what I want to do bro reply bro @@Iphone2007kl

  • @banasreenath1601
    @banasreenath1601 6 หลายเดือนก่อน +2

    8:39

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

    bhai code, google drive access denied ho raha.

  • @ilhamarif1315
    @ilhamarif1315 2 หลายเดือนก่อน

    Hello bro, I want to ask if you don't have problems with your 9V battery getting hot and running out quickly?

  • @diyaali3100
    @diyaali3100 ปีที่แล้ว

    Ye material total ktny Ka Mila tha ?? Ktny bgut me??

  • @MUHAMMADSHAYAN13905
    @MUHAMMADSHAYAN13905 11 หลายเดือนก่อน

    AsalamuAlaikum. i made the project and uploaded the code but it is only beeping. What should i do??

    • @thewiredworldofqasim
      @thewiredworldofqasim  11 หลายเดือนก่อน

      Waalaikum salam! Please make sure all the wires is properly and correctly connected

    • @MUHAMMADSHAYAN13905
      @MUHAMMADSHAYAN13905 10 หลายเดือนก่อน +1

      ​@@thewiredworldofqasimit turned out that my ultrasonic sensor was faulty. Thanks for the advice though!

    • @Nadim166
      @Nadim166 10 หลายเดือนก่อน

      ​@@MUHAMMADSHAYAN13905bro aapka aurdino ka cost kitna lga or konsa Arduino purchase karna hai kya aap help kar sakte ho

  • @nutanrani6701
    @nutanrani6701 5 หลายเดือนก่อน +1

    Plz give me name of all the parts

    • @thewiredworldofqasim
      @thewiredworldofqasim  5 หลายเดือนก่อน

      Arduino uno
      Buzzer
      Ultrasonic Sensor
      9v battery
      If you have any query feel free to comment again

  • @RachitAgrawal-fx3ei
    @RachitAgrawal-fx3ei หลายเดือนก่อน

    the drive is not opening bro

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

      drive.google.com/file/d/1GJ31J-Fff5lZGHhr67eKISNBFZydq6S_/view?usp=drivesdk

  • @csccomputereducation
    @csccomputereducation 3 หลายเดือนก่อน

    version of arduino

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

      UNO

  • @Laddu.sri9
    @Laddu.sri9 10 หลายเดือนก่อน

    The code is not opening can u please send that code i have to do this project

    • @thewiredworldofqasim
      @thewiredworldofqasim  10 หลายเดือนก่อน

      drive.google.com/file/d/1GJ31J-Fff5lZGHhr67eKISNBFZydq6S_/view?usp=drivesdk

    • @poojadahiya7646
      @poojadahiya7646 4 หลายเดือนก่อน

      ​@@thewiredworldofqasim this code is still unopened please 🥺 help

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

      ​@@poojadahiya7646#define trigPin 9
      #define echoPin 10
      #define buzzerPin 8
      void setup() {
      pinMode(trigPin, OUTPUT);
      pinMode(echoPin, INPUT);
      pinMode(buzzerPin, OUTPUT);
      Serial.begin(9600);
      }
      void loop() {
      long duration, distance;
      // Send an ultrasonic pulse to measure distance
      digitalWrite(trigPin, LOW);
      delayMicroseconds(2);
      digitalWrite(trigPin, HIGH);
      delayMicroseconds(10);
      digitalWrite(trigPin, LOW);
      // Measure the time it takes for the pulse to return
      duration = pulseIn(echoPin, HIGH);
      // Calculate distance in centimeters
      distance = (duration / 2) / 29.1;
      // Check the distance
      if (distance < 10) {
      // If an obstacle is detected within 20cm, sound the buzzer
      digitalWrite(buzzerPin , HIGH);
      delay(500); // Buzzer on for half a second
      digitalWrite(buzzerPin , LOW);
      }
      // Print the distance to the serial monitor for debugging
      Serial.print("Distance: ");
      Serial.print(distance);
      Serial.println(" cm");
      delay(100); // Wait for a short time before the next measurement
      }

  • @S.Gopinath_off
    @S.Gopinath_off 2 หลายเดือนก่อน

    Bro i need code please

    • @Iphone2007kl
      @Iphone2007kl หลายเดือนก่อน +1

      #define trigPin 9
      #define echoPin 10
      #define buzzerPin 8
      void setup() {
      pinMode(trigPin, OUTPUT);
      pinMode(echoPin, INPUT);
      pinMode(buzzerPin, OUTPUT);
      Serial.begin(9600);
      }
      void loop() {
      long duration, distance;
      // Send an ultrasonic pulse to measure distance
      digitalWrite(trigPin, LOW);
      delayMicroseconds(2);
      digitalWrite(trigPin, HIGH);
      delayMicroseconds(10);
      digitalWrite(trigPin, LOW);
      // Measure the time it takes for the pulse to return
      duration = pulseIn(echoPin, HIGH);
      // Calculate distance in centimeters
      distance = (duration / 2) / 29.1;
      // Check the distance
      if (distance < 10) {
      // If an obstacle is detected within 20cm, sound the buzzer
      digitalWrite(buzzerPin , HIGH);
      delay(500); // Buzzer on for half a second
      digitalWrite(buzzerPin , LOW);
      }
      // Print the distance to the serial monitor for debugging
      Serial.print("Distance: ");
      Serial.print(distance);
      Serial.println(" cm");
      delay(100); // Wait for a short time before the next measurement
      } 1:29 1:30

  • @AhmadParviz-mh9rc
    @AhmadParviz-mh9rc 8 หลายเดือนก่อน

    Shock

  • @AADI_GAMING100
    @AADI_GAMING100 3 หลายเดือนก่อน

    What is code

  • @banasreenath1601
    @banasreenath1601 6 หลายเดือนก่อน

    8:39

  • @banasreenath1601
    @banasreenath1601 6 หลายเดือนก่อน

    8:39