Fire Fighting Robot, Fire Fighting Robotic Car, New Electronics Project

Sdílet
Vložit
  • čas přidán 20. 08. 2024
  • Fire Fighting Robot, Fire Fighting Robotic Car, New Electronics Project #science #shorts

Komentáře • 485

  • @vinutharanir3316
    @vinutharanir3316 Před 4 hodinami +1

    Sir please upload Coding 😢🙏🙏🙏

  • @AnuragKr12k
    @AnuragKr12k Před 7 měsíci +28

    #include //include servo.h library
    Servo myservo;
    int pos = 0;
    boolean fire = false;
    #define Left 9 // left sensor
    #define Right 10 // right sensor
    #define Forward 8 //front sensor
    #define LM1 2 // left motor
    #define LM2 3 // left motor
    #define RM1 4 // right motor
    #define RM2 5 // right motor
    #define pump 6
    void setup()
    {
    pinMode(Left, INPUT);
    pinMode(Right, INPUT);
    pinMode(Forward, INPUT);
    pinMode(LM1, OUTPUT);
    pinMode(LM2, OUTPUT);
    pinMode(RM1, OUTPUT);
    pinMode(RM2, OUTPUT);
    pinMode(pump, OUTPUT);
    myservo.attach(11);
    myservo.write(90);
    }
    void put_off_fire()
    {
    delay (500);
    digitalWrite(LM1, HIGH);
    digitalWrite(LM2, HIGH);
    digitalWrite(RM1, HIGH);
    digitalWrite(RM2, HIGH);
    digitalWrite(pump, HIGH);
    delay(500);
    for (pos = 50; pos = 50; pos -= 1) {
    myservo.write(pos);
    delay(10);
    }
    digitalWrite(pump,LOW);
    myservo.write(90);
    fire=false;
    }
    void loop()
    {
    myservo.write(90); //Sweep_Servo();
    if (digitalRead(Left) ==1 && digitalRead(Right)==1 && digitalRead(Forward) ==1)
    {
    digitalWrite(LM1, HIGH);
    digitalWrite(LM2, HIGH);
    digitalWrite(RM1, HIGH);
    digitalWrite(RM2, HIGH);
    }
    else if (digitalRead(Forward) ==0)
    {
    digitalWrite(LM1, HIGH);
    digitalWrite(LM2, LOW);
    digitalWrite(RM1, HIGH);
    digitalWrite(RM2, LOW);
    fire = true;
    }
    else if (digitalRead(Left) ==0)
    {
    digitalWrite(LM1, HIGH);
    digitalWrite(LM2, LOW);
    digitalWrite(RM1, HIGH);
    digitalWrite(RM2, HIGH);
    }
    else if (digitalRead(Right) ==0)
    {
    digitalWrite(LM1, HIGH);
    digitalWrite(LM2, HIGH);
    digitalWrite(RM1, HIGH);
    digitalWrite(RM2, LOW);
    }
    delay(300);//change this value to increase the distance
    while (fire == true)
    {
    put_off_fire();
    }
    }

  • @Ifraz-The-Iffy-One
    @Ifraz-The-Iffy-One Před 8 měsíci +5

    my school is forcing us to do a science project. my class chose this. thanks for the idea.

  • @VihaanJain13
    @VihaanJain13 Před rokem +2

    Please share and support him

  • @sureshmaddisetty1974
    @sureshmaddisetty1974 Před rokem +3

    Very good project this helped my for my job

  • @nixxr
    @nixxr Před rokem +18

    Can I get the arduino source code for the fire detection and aiming system? I’d like to use it for a larger project.

    • @e-starabhi7950
      @e-starabhi7950 Před rokem

      s
      223

      Add a comment…

      @erchandra56265 months ago
      Hello sir is robot ki coding de dijiye 🙏❤️
      89
      32

      @lovewithcode79143 months ago
      Khud karlo itne to ati hey
      7

      @jaymahadik16393 months ago
      😂😂
      2

      @luis_rodoble3 months ago
      ​ @TechXpert-Rohit Yes it is?
      5

      @akkyzmusica44333 months ago
      Fukat main thodi milega...
      3

      @swapnadeepdas11573 months ago (edited)
      ​​ @TechXpert-Rohit Is this code is working?
      4

      @adamhedhli31253 months ago
      ​ @TechXpert-Rohit thanks
      1

      @nicepost15962 months ago
      Hello sir please robot ka conding dijiye ❤
      1

      @saurabhsharma26792 months ago
      @lovewithcode7914 aati to kyu puchta
      1

      @saurabhsharma26792 months ago
      @akkyzmusica4433 koi fokat me hi de de
      1

      @xerendityapexlegends39402 months ago
      Might be fake. He can simply code something like "spray water after 10 seconds" and then he puts the burning item in front of the robot after 10 seconds.
      1

      @abhinavkumar66952 months ago
      296527 code
      2

      @ayushdey54942 months ago
      ​ @xerendityapexlegends3940 What's that spray after 20 sec ? Do you have any programming knowledge?
      1

      @CARSEDITZ062 months ago
      ​ @ayushdey5494 // Include the necessary libraries #include // Define the pins for the flame sensors, motors, and servo const int leftSensor = 9; const int rightSensor = 10; const int forwardSensor = 8; const int leftMotor1 = 2; const int leftMotor2 = 3; const int rightMotor1 = 4; const int rightMotor2 = 5; const int waterPump = 6; const int servoPin = 7; // Adjust the pin number if necessary // Create a servo object Servo myservo; // Declare a boolean variable to track water pump status and fire status bool isWaterPumpOn = false; bool fire = false; // Initialize the flame sensors, motors, and servo void setup() { pinMode(leftSensor, INPUT); pinMode(rightSensor, INPUT); pinMode(forwardSensor, INPUT); pinMode(leftMotor1, OUTPUT); pinMode(leftMotor2, OUTPUT); pinMode(rightMotor1, OUTPUT); pinMode(rightMotor2, OUTPUT); pinMode(waterPump, OUTPUT); // Set the water pump pin as an output // Attach the servo to the pin myservo.attach(servoPin); // Set the initial position of the servo myservo.write(0); } // Loop forever void loop() { // Check if there is fire if (digitalRead(leftSensor) == HIGH || digitalRead(rightSensor) == HIGH || digitalRead(forwardSensor) == HIGH) { fire = true; } else { fire = false; } // If there is fire, move the robot towards it if (fire) { if (digitalRead(leftSensor) == HIGH) { // Turn left digitalWrite(leftMotor1, HIGH); digitalWrite(leftMotor2, LOW); digitalWrite(rightMotor1, LOW); digitalWrite(rightMotor2, HIGH); } else if (digitalRead(rightSensor) == HIGH) { // Turn right digitalWrite(leftMotor1, LOW); digitalWrite(leftMotor2, HIGH); digitalWrite(rightMotor1, HIGH); digitalWrite(rightMotor2, LOW); } else if (digitalRead(forwardSensor) == HIGH) { // Move forward digitalWrite(leftMotor1, HIGH); digitalWrite(leftMotor2, LOW); digitalWrite(rightMotor1, HIGH); digitalWrite(rightMotor2, LOW); } } else { // No fire detected, stop the motors digitalWrite(leftMotor1, LOW); digitalWrite(leftMotor2, LOW); digitalWrite(rightMotor1, LOW); digitalWrite(rightMotor2, LOW); } // If the robot is close to the fire and the left sensor is detecting fire, turn on the water pump and spray water if (fire && (digitalRead(leftSensor) == HIGH || digitalRead(rightSensor) == HIGH || digitalRead(forwardSensor) == HIGH)) { digitalWrite(waterPump, HIGH); isWaterPumpOn = true; // Rotate the servo to spray water at the sight where the fire is detected myservo.write(120); delay(1000); // Delay for spraying water } else { digitalWrite(waterPump, LOW); isWaterPumpOn = false; // Set the servo back to 0 degrees when the fire is extinguished myservo.write(0); } }

    • @GoldnShakeel
      @GoldnShakeel Před 11 měsíci +1

      Did you got

    • @whitty8187
      @whitty8187 Před 11 měsíci

      did you got the ccode

    • @allinonewithsiblings8113
      @allinonewithsiblings8113 Před 10 měsíci +18

      #include //include servo.h library
      Servo myservo;
      int pos = 0;
      int motor_speed = 70;
      boolean fire = false;
      #define Left 9 // left sensor
      #define Right 10 // right sensor
      #define Forward 8 //front sensor
      #define LM1 2 // left motor
      #define LM2 7 // left motor
      #define RM1 4 // right motor
      #define RM2 12 // right motor
      #define pump 6
      void setup() {
      pinMode(Left, INPUT);
      pinMode(Right, INPUT);
      pinMode(Forward, INPUT);
      pinMode(LM1, OUTPUT);
      pinMode(LM2, OUTPUT);
      pinMode(RM1, OUTPUT);
      pinMode(RM2, OUTPUT);
      pinMode(pump, OUTPUT);
      analogWrite(3, motor_speed);
      analogWrite(5, motor_speed);
      myservo.attach(11);
      myservo.write(90);
      }
      void put_off_fire() {
      delay (500);
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, HIGH);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, HIGH);
      digitalWrite(pump, HIGH);
      delay(500);
      for (pos = 50; pos = 50; pos -= 1) {
      myservo.write(pos);
      delay(10);
      }
      digitalWrite(pump,LOW);
      myservo.write(90);
      fire=false;
      }
      void loop() {
      myservo.write(90); //Sweep_Servo();
      if (digitalRead(Left) ==1 && digitalRead(Right)==1 && digitalRead(Forward) ==1) {
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, HIGH);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, HIGH);
      }
      else if (digitalRead(Forward) ==0) {
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, LOW);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, LOW);
      fire = true;
      }
      else if (digitalRead(Left) ==0) {
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, LOW);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, HIGH);
      }
      else if (digitalRead(Right) ==0) {
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, HIGH);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, LOW);
      }
      delay(300);//change this value to increase the distance
      while (fire == true) {
      put_off_fire();
      }
      }

    • @s.g.sgamingofficial
      @s.g.sgamingofficial Před 10 měsíci +1

      9k

  • @sittieayshabasher5838
    @sittieayshabasher5838 Před rokem +13

    great work, can you provide the code you used?

  • @Ganeshaynamah007
    @Ganeshaynamah007 Před 11 měsíci +5

    Nice one. But water spreading can be made better as there is risk of components getting damaged due to water.

  • @gavitmilind77
    @gavitmilind77 Před rokem +11

    Please give coding and specification and rating of all products if you not sell project

  • @BUNNYBOY210
    @BUNNYBOY210 Před rokem +2

    Sir you are legend

  • @erchandra5626
    @erchandra5626 Před rokem +183

    Hello sir is robot ki coding de dijiye 🙏❤️

  • @vidhinavlani3773
    @vidhinavlani3773 Před 20 dny +1

    It is not working

  • @AVR.shorts
    @AVR.shorts Před 11 měsíci

    Are isme sir hamara Ghar chala jayega😅😅

  • @user-dj9ex5vp5v
    @user-dj9ex5vp5v Před 9 měsíci +1

    very good

  • @user-hn2du7rf1n
    @user-hn2du7rf1n Před 11 měsíci

    Very Nice project

  • @cahayaislam215
    @cahayaislam215 Před rokem +2

    Good job guys Spirit

  • @user-or8pd4rp6e
    @user-or8pd4rp6e Před 11 měsíci

    Dhanayavad bhava तुझ्या मुळे मला inspire award madhe 5000 milale

  • @bat-erdeneganhuyag7287
    @bat-erdeneganhuyag7287 Před rokem +6

    Hello can u this projects code share white us ?? Ty

  • @koustavmaji3546
    @koustavmaji3546 Před 9 měsíci +1

    Respect,
    My student trust you. But fire fighting robot not working followed by your circuit diagram and incomplete code. Please don't play with student's expectations. Provide proper coding and circuit diagram.

  • @gamerminecraft33
    @gamerminecraft33 Před 8 měsíci +2

    hey guys the same code is available in quartz components

  • @Smartech-PS
    @Smartech-PS Před 10 měsíci +1

    Sir plzz saare material 2000 mein aa sakte hai kya sir

  • @user-bo5nj6jn6z
    @user-bo5nj6jn6z Před 6 měsíci +1

    Thanks but need coding sir

  • @Unknown-bv2cv
    @Unknown-bv2cv Před rokem +6

    What is the source code for it , do anyone know

    • @CARSEDITZ06
      @CARSEDITZ06 Před rokem +1

      // Include the necessary libraries
      #include
      // Define the pins for the flame sensors, motors, and servo
      const int leftSensor = 9;
      const int rightSensor = 10;
      const int forwardSensor = 8;
      const int leftMotor1 = 2;
      const int leftMotor2 = 3;
      const int rightMotor1 = 4;
      const int rightMotor2 = 5;
      const int waterPump = 6;
      const int servoPin = 7; // Adjust the pin number if necessary
      // Create a servo object
      Servo myservo;
      // Declare a boolean variable to track water pump status and fire status
      bool isWaterPumpOn = false;
      bool fire = false;
      // Initialize the flame sensors, motors, and servo
      void setup() {
      pinMode(leftSensor, INPUT);
      pinMode(rightSensor, INPUT);
      pinMode(forwardSensor, INPUT);
      pinMode(leftMotor1, OUTPUT);
      pinMode(leftMotor2, OUTPUT);
      pinMode(rightMotor1, OUTPUT);
      pinMode(rightMotor2, OUTPUT);
      pinMode(waterPump, OUTPUT); // Set the water pump pin as an output
      // Attach the servo to the pin
      myservo.attach(servoPin);
      // Set the initial position of the servo
      myservo.write(0);
      }
      // Loop forever
      void loop() {
      // Check if there is fire
      if (digitalRead(leftSensor) == HIGH || digitalRead(rightSensor) == HIGH || digitalRead(forwardSensor) == HIGH) {
      fire = true;
      } else {
      fire = false;
      }
      // If there is fire, move the robot towards it
      if (fire) {
      if (digitalRead(leftSensor) == HIGH) {
      // Turn left
      digitalWrite(leftMotor1, HIGH);
      digitalWrite(leftMotor2, LOW);
      digitalWrite(rightMotor1, LOW);
      digitalWrite(rightMotor2, HIGH);
      } else if (digitalRead(rightSensor) == HIGH) {
      // Turn right
      digitalWrite(leftMotor1, LOW);
      digitalWrite(leftMotor2, HIGH);
      digitalWrite(rightMotor1, HIGH);
      digitalWrite(rightMotor2, LOW);
      } else if (digitalRead(forwardSensor) == HIGH) {
      // Move forward
      digitalWrite(leftMotor1, HIGH);
      digitalWrite(leftMotor2, LOW);
      digitalWrite(rightMotor1, HIGH);
      digitalWrite(rightMotor2, LOW);
      }
      } else {
      // No fire detected, stop the motors
      digitalWrite(leftMotor1, LOW);
      digitalWrite(leftMotor2, LOW);
      digitalWrite(rightMotor1, LOW);
      digitalWrite(rightMotor2, LOW);
      }
      // If the robot is close to the fire and the left sensor is detecting fire, turn on the water pump and spray water
      if (fire && (digitalRead(leftSensor) == HIGH || digitalRead(rightSensor) == HIGH || digitalRead(forwardSensor) == HIGH)) {
      digitalWrite(waterPump, HIGH);
      isWaterPumpOn = true;
      // Rotate the servo to spray water at the sight where the fire is detected
      myservo.write(120);
      delay(1000); // Delay for spraying water
      } else {
      digitalWrite(waterPump, LOW);
      isWaterPumpOn = false;
      // Set the servo back to 0 degrees when the fire is extinguished
      myservo.write(0);
      }
      }

    • @NAVDEEPKAUR-mn7ew
      @NAVDEEPKAUR-mn7ew Před rokem

      ​@@CARSEDITZ06 hii can we do it in python also please tell

    • @CARSEDITZ06
      @CARSEDITZ06 Před rokem

      @@NAVDEEPKAUR-mn7ew no, if you're asing arduino type controllers you need to programme in c or c++ language

    • @nobodynobody3696
      @nobodynobody3696 Před rokem

      @@CARSEDITZ06 .

    • @Roshankumar-ld3lr
      @Roshankumar-ld3lr Před rokem

      Cod kam kar raha

  • @RahuKumar-pe6fj
    @RahuKumar-pe6fj Před 13 dny +1

    Hello Sar coding ismein kya Dalenge coding please bhej dijiye

  • @AnchalSingh-bx8by
    @AnchalSingh-bx8by Před 11 měsíci +1

    Hellow sir ya innovative modle ha

  • @jack_sparrow36277
    @jack_sparrow36277 Před 10 měsíci

    Super level of explanation

  • @jkfatima3647
    @jkfatima3647 Před 5 měsíci

    Thank u uncle for the amazing idea my teachers was very proud of me ❤

  • @srinivasvlog903
    @srinivasvlog903 Před rokem +1

    Pleas tell how to make a iron man hand

  • @sensorchannel
    @sensorchannel Před 6 měsíci

    Very good project

  • @cubesolver7565
    @cubesolver7565 Před rokem +2

    Sir code dedijiye

  • @vidhyapawar4207
    @vidhyapawar4207 Před rokem +2

    कोणता प्रोग्राम अपलोड करायचा आहे

  • @user-yq2oh5id8t
    @user-yq2oh5id8t Před 7 měsíci +1

    Thanks but I need coding

  • @myfriendsdiamond2605
    @myfriendsdiamond2605 Před rokem +1

    Super brother❤

  • @sowmyabr7850
    @sowmyabr7850 Před rokem +2

    Hi sir please can get the program which you have used in this project

  • @MdJamil-yo9fk
    @MdJamil-yo9fk Před 7 měsíci +2

    Please post the coding process of robot

    • @self_gaming716
      @self_gaming716 Před 8 dny

      #include //include servo.h library Servo myservo; int pos = 0; boolean fire = false; #define Left 9 // left sensor #define Right 10 // right sensor #define Forward 8 //front sensor #define LM1 2 // left motor #define LM2 3 // left motor #define RM1 4 // right motor #define RM2 5 // right motor #define pump 6 void setup() { pinMode(Left, INPUT); pinMode(Right, INPUT); pinMode(Forward, INPUT); pinMode(LM1, OUTPUT); pinMode(LM2, OUTPUT); pinMode(RM1, OUTPUT); pinMode(RM2, OUTPUT); pinMode(pump, OUTPUT); myservo.attach(11); myservo.write(90); } void put_off_fire() { delay (500); digitalWrite(LM1, HIGH); digitalWrite(LM2, HIGH); digitalWrite(RM1, HIGH); digitalWrite(RM2, HIGH); digitalWrite(pump, HIGH); delay(500); for (pos = 50; pos = 50; pos -= 1) { myservo.write(pos); delay(10); } digitalWrite(pump,LOW); myservo.write(90); fire=false; } void loop() { myservo } void loop() { myservo.write(90); //Sweep_Servo(); if (digitalRead(Left) ==1 && digitalRead(Right)==1 && digitalRead(Forward) ==1) { digitalWrite(LM1, HIGH); digitalWrite(LM2, HIGH); digitalWrite(RM1, HIGH); digitalWrite(RM2, HIGH); } else if (digitalRead(Forward) ==0) { digitalWrite(LM1, HIGH); digitalWrite(LM2, LOW); digitalWrite(RM1, HIGH); digitalWrite(RM2, LOW); fire = true; } else if (digitalRead(Left) ==0) { digitalWrite(LM1, HIGH); digitalWrite(LM2, LOW); digitalWrite(RM1, HIGH); digitalWrite(RM2, HIGH); } else if (digitalRead(Right) ==0) { digitalWrite(LM1, HIGH); digitalWrite(LM2, HIGH); digitalWrite(RM1, HIGH); digitalWrite(RM2, LOW); } delay(300);//change this value to increase the distance while (fire == true) { put_off_fire(); } }

  • @sunithaa9835
    @sunithaa9835 Před 6 měsíci +1

    Bro please send coding in description

  • @MdJamil-yo9fk
    @MdJamil-yo9fk Před 7 měsíci +1

    Please add the link of kit

  • @madhaviharinkhede9402
    @madhaviharinkhede9402 Před 6 měsíci +1

    Sir how much money to make it

  • @anweshashah737
    @anweshashah737 Před 8 měsíci +1

    Bhaiya code dedo na hum science exhibition me ye fire fighting car banaarahe he. Kal exhibition he hamara project incomplete hojaayega. Code dedo.
    Iske badle hum aapke CZcams channel kaa promotion kardenge kal sabke saamne.😢code dedo

  • @bablipal7933
    @bablipal7933 Před rokem +1

    Sir please coding ki video de dejiye

  • @HUYHANMA
    @HUYHANMA Před rokem +1

    Myhranv love viet nam city 🇻🇳🇻🇳🇻🇳🇻🇳🇻🇳🇻🇳

  • @yashasbedu9917
    @yashasbedu9917 Před 10 měsíci

    Sir like i want to thank you very much

  • @sharmilapatil9081
    @sharmilapatil9081 Před 10 měsíci +2

    What code did you upload ?

    • @allinonewithsiblings8113
      @allinonewithsiblings8113 Před 10 měsíci +2

      #include //include servo.h library
      Servo myservo;
      int pos = 0;
      int motor_speed = 70;
      boolean fire = false;
      #define Left 9 // left sensor
      #define Right 10 // right sensor
      #define Forward 8 //front sensor
      #define LM1 2 // left motor
      #define LM2 7 // left motor
      #define RM1 4 // right motor
      #define RM2 12 // right motor
      #define pump 6
      void setup() {
      pinMode(Left, INPUT);
      pinMode(Right, INPUT);
      pinMode(Forward, INPUT);
      pinMode(LM1, OUTPUT);
      pinMode(LM2, OUTPUT);
      pinMode(RM1, OUTPUT);
      pinMode(RM2, OUTPUT);
      pinMode(pump, OUTPUT);
      analogWrite(3, motor_speed);
      analogWrite(5, motor_speed);
      myservo.attach(11);
      myservo.write(90);
      }
      void put_off_fire() {
      delay (500);
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, HIGH);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, HIGH);
      digitalWrite(pump, HIGH);
      delay(500);
      for (pos = 50; pos = 50; pos -= 1) {
      myservo.write(pos);
      delay(10);
      }
      digitalWrite(pump,LOW);
      myservo.write(90);
      fire=false;
      }
      void loop() {
      myservo.write(90); //Sweep_Servo();
      if (digitalRead(Left) ==1 && digitalRead(Right)==1 && digitalRead(Forward) ==1) {
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, HIGH);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, HIGH);
      }
      else if (digitalRead(Forward) ==0) {
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, LOW);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, LOW);
      fire = true;
      }
      else if (digitalRead(Left) ==0) {
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, LOW);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, HIGH);
      }
      else if (digitalRead(Right) ==0) {
      digitalWrite(LM1, HIGH);
      digitalWrite(LM2, HIGH);
      digitalWrite(RM1, HIGH);
      digitalWrite(RM2, LOW);
      }
      delay(300);//change this value to increase the distance
      while (fire == true) {
      put_off_fire();
      }
      }

  • @user-cw2nc9nm8l
    @user-cw2nc9nm8l Před rokem +1

    sir please mention the wanted equipments sir

  • @Harshraval747
    @Harshraval747 Před 8 měsíci

    Best sir superb

  • @kingman5977
    @kingman5977 Před 4 měsíci

    Sir it will be very helpful if you upload some english subtitles

  • @AnilKumar-ne7jb
    @AnilKumar-ne7jb Před rokem

    Subscribed

  • @abhishekchavan2123
    @abhishekchavan2123 Před rokem +2

    Sir plz provide code

  • @mariejoymartinez8409
    @mariejoymartinez8409 Před rokem +12

    Oh my, you can make huge money for this project. It's a great project and it would be great use in your country in the future.

    • @s.abdulmajid7180
      @s.abdulmajid7180 Před rokem +1

      Don't only see that this project will gave him much money. This project give him his hardworks.

    • @xerenityapexlegends3940
      @xerenityapexlegends3940 Před rokem +1

      If he doesn't show the code, it's likely fake

    • @user-ok4vd2ve6x
      @user-ok4vd2ve6x Před 6 měsíci

      😢 without code this robo can't move ​@@xerenityapexlegends3940

  • @slsumanalatha5611
    @slsumanalatha5611 Před dnem

    Sir robot car kit control phone 😮

  • @advaithvarrier2K13
    @advaithvarrier2K13 Před 4 měsíci

    Sir, Can I use IR sensor instead of Flame Sensor?

  • @Artz7k
    @Artz7k Před 11 měsíci +1

    Sir plzz tell the cost of it

  • @satyenpatra2563
    @satyenpatra2563 Před rokem +1

    Sir this project ki speech ta do

  • @sarikamadkaikar1182
    @sarikamadkaikar1182 Před rokem

    Man thats shurely complicated 😅

  • @user-wj3bg7ij4m
    @user-wj3bg7ij4m Před rokem

    Sir apka video mein awaz jaada acha nahi aata hai 😢

  • @yashasbedu9917
    @yashasbedu9917 Před 10 měsíci

    Sir,truly thank you😊

  • @vuddemarripramod3541
    @vuddemarripramod3541 Před 6 měsíci +1

    Hello sir please upload the code I have made this seeing your video i need a code to run the project sir

  • @MamtaChilkoti
    @MamtaChilkoti Před měsícem +1

    Hello sir Mene inspire award ke liye ye project silect Kiya hai peleas iska uploading code bta dijiye mein aapka subscriber hu sir please

  • @xo_bhavesh_xo
    @xo_bhavesh_xo Před rokem +1

    Sir material Kha se milega

  • @smeetamore6057
    @smeetamore6057 Před 6 měsíci +1

    Best Project Sir I will make it for my science project ❤❤

  • @Preethamkumer
    @Preethamkumer Před měsícem +1

    How to programming sar

  • @HUYHANMA
    @HUYHANMA Před rokem +1

    Love helo viet nam city

  • @user-qf9we7rm1h
    @user-qf9we7rm1h Před rokem +1

    Sir material ka list dejiye plzzz...

  • @mujahid-ym2ys
    @mujahid-ym2ys Před 8 měsíci +1

    Hello sir is robot ki coding de dijiye

  • @Indianbeast-A1
    @Indianbeast-A1 Před 2 měsíci

    Please tell me what is the approx price required in making of it

  • @kumarmanda934
    @kumarmanda934 Před 7 měsíci +1

    Arduino UNO fire fighting robot how can canoct laptop please.

  • @mahfuzamaya3217
    @mahfuzamaya3217 Před 5 měsíci

    Which programming language you used here?

  • @FARHAN_-
    @FARHAN_- Před rokem +2

    Sir codes plz

  • @kerengill2081
    @kerengill2081 Před rokem +10

    Hello sir, can you please share the code for this🥺

  • @user-wf9vx2hd3e
    @user-wf9vx2hd3e Před 11 měsíci +1

    Sir kod dijiye

  • @anisha6621
    @anisha6621 Před rokem +2

    Bro...code chahiye

  • @user-mv3nf8vz5i
    @user-mv3nf8vz5i Před rokem +5

    amazing ❤❤

  • @abhisekh0
    @abhisekh0 Před 10 měsíci +1

    wheels are not working what to do ? i followed step by step

    • @264hamnaamir5
      @264hamnaamir5 Před 8 měsíci

      same question from my side
      do you get an answer

  • @josesilva9540
    @josesilva9540 Před rokem +2

    does anyone know the code?

  • @2friendsBLOGE737
    @2friendsBLOGE737 Před 2 dny

    Code kahan se milega

  • @AbhishekKumar-ex9xq
    @AbhishekKumar-ex9xq Před rokem +1

    Sir code please

  • @marjahan3602
    @marjahan3602 Před 10 měsíci

    ভাইজান আমি আপনার প্রত্যেকটা ভিডিও দেখি,😢 কিন্তু আমার কাছে টাকা নেই এজন্য আমি আপনার মত কিছুই বানাতে পারি না

  • @abdulgani2316
    @abdulgani2316 Před 26 dny

    Hello sir ya Kitana ka ha

  • @xendex1
    @xendex1 Před rokem +1

    @vmk technical power can u pls tell me why my motors are running when there is no fire anywhere still its running

  • @sehbarmushtaq8914
    @sehbarmushtaq8914 Před rokem +1

    sir arduino uno mai konsa programe dalna hai

  • @ShailendriSrivastava
    @ShailendriSrivastava Před 23 dny

    Bhaiya coding bata do

  • @INDIANCREATOR291
    @INDIANCREATOR291 Před měsícem +1

    Code please 🥺

  • @Sarveshk9468
    @Sarveshk9468 Před 10 měsíci

    Sir coding plz❤❤❤❤❤

  • @freefirevlog3681
    @freefirevlog3681 Před 10 měsíci +1

    Sir Arduino Uno ka code bata digya is project ka liya mara sa nahi ho rha ha comments box ma pdf dal digya

  • @JyotiGupta-jq2vw
    @JyotiGupta-jq2vw Před 28 dny

    Sir I want to make this project for our science exhibition please can you kindly share the code please sir!!!

  • @dineshojha478
    @dineshojha478 Před 2 měsíci

    koi material required bta do plezzzzzzzzzzzz

  • @manhalhani655
    @manhalhani655 Před rokem +1

    We need the code please

  • @AakashSystem
    @AakashSystem Před rokem

    Sir ye sari chije available bhi toh krao kaha se milengi our programing kaha se laye

  • @user-zx7mb9ti5r
    @user-zx7mb9ti5r Před 10 měsíci

    Can we use 3 wheels instead of castor wheel?

  • @sk_gaming262
    @sk_gaming262 Před 5 měsíci

    Sir some additional parts. Can you tell

  • @vjvijay1837
    @vjvijay1837 Před měsícem

    Please provide code for this project tmrw is my project submission

  • @AB___ENTERTAINMENT
    @AB___ENTERTAINMENT Před rokem +1

    Sir code give me

  • @hemajangid5493
    @hemajangid5493 Před 8 měsíci

    Sir please make this robot without arduino

  • @user-qf4ib8io9u
    @user-qf4ib8io9u Před rokem

    I want to buy this project ❤

  • @roopahipparagi8502
    @roopahipparagi8502 Před 8 měsíci +1

    Hello sir how to upload program in Arduino Uno with laptop

  • @Ankit_Gamerz9116
    @Ankit_Gamerz9116 Před 10 měsíci

    Bhai is per kitna cost Aayega

  • @user-jw2pt6tr6q
    @user-jw2pt6tr6q Před 7 měsíci

    Sir what are the things used

  • @KOLI99-uw6nm
    @KOLI99-uw6nm Před měsícem

    How to uplod program sir

  • @onlyupsc2.097
    @onlyupsc2.097 Před rokem +1

    Sir program kaise upload kare code digiye please

  • @user-dh5dl8wm6c
    @user-dh5dl8wm6c Před 10 měsíci

    thank you we have a project in our school. this video is help us to made. an we got 1st in district level