Тёмный

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

VMK Technical Power
Подписаться 2,7 млн
Просмотров 387 тыс.
50% 1

Fire Fighting Robot, Fire Fighting Robotic Car, New Electronics Project #science #shorts

Опубликовано:

 

18 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 512   
@sureshmaddisetty1974
@sureshmaddisetty1974 Год назад
Very good project this helped my for my job
@CARSEDITZ06
@CARSEDITZ06 Год назад
How please can you tell me?
@AnuragKr12k
@AnuragKr12k 8 месяцев назад
#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(); } }
@JasminLuvis
@JasminLuvis 8 месяцев назад
Ok
@purabidasdas9234
@purabidasdas9234 2 месяца назад
Please give me the code at this no. 6002950105 because I am not copying this
@progamingdavegaming.171
@progamingdavegaming.171 27 дней назад
Thank you bro
@Jodedits2.O
@Jodedits2.O 20 дней назад
👍👍👍Thanks bro ♥️♥️♥️
@physics_theoriess2.O
@physics_theoriess2.O 20 дней назад
Hi bro
@Ifraz-The-Iffy-One
@Ifraz-The-Iffy-One 9 месяцев назад
my school is forcing us to do a science project. my class chose this. thanks for the idea.
@mahrusmubir
@mahrusmubir 9 месяцев назад
iffy?
@Ganeshaynamah007
@Ganeshaynamah007 Год назад
Nice one. But water spreading can be made better as there is risk of components getting damaged due to water.
@sittieayshabasher5838
@sittieayshabasher5838 Год назад
great work, can you provide the code you used?
@VihaanJain13
@VihaanJain13 Год назад
Please share and support him
@erchandra5626
@erchandra5626 Год назад
Hello sir is robot ki coding de dijiye 🙏❤️
@lovewithcode7914
@lovewithcode7914 Год назад
Khud karlo itne to ati hey
@jaymahadik1639
@jaymahadik1639 Год назад
😂😂
@luis_rodoble
@luis_rodoble Год назад
​@@TechXpert-Rohit Yes it is?
@akkyzmusica4433
@akkyzmusica4433 Год назад
Fukat main thodi milega...
@swapnadeepdas1
@swapnadeepdas1 Год назад
​​@@TechXpert-Rohit Is this code is working?
@BUNNYBOY210
@BUNNYBOY210 Год назад
Sir you are legend
@nixxr
@nixxr Год назад
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 Год назад
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 Год назад
Did you got
@whitty8187
@whitty8187 Год назад
did you got the ccode
@allinonewithsiblings8113
@allinonewithsiblings8113 11 месяцев назад
#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 11 месяцев назад
9k
@koustavmaji3546
@koustavmaji3546 10 месяцев назад
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.
@HUYHANMA
@HUYHANMA Год назад
Myhranv love viet nam city 🇻🇳🇻🇳🇻🇳🇻🇳🇻🇳🇻🇳
@cahayaislam215
@cahayaislam215 Год назад
Good job guys Spirit
@AnchalSingh-bx8by
@AnchalSingh-bx8by Год назад
Hellow sir ya innovative modle ha
@mariejoymartinez8409
@mariejoymartinez8409 Год назад
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 Год назад
Don't only see that this project will gave him much money. This project give him his hardworks.
@xerenityapexlegends3940
@xerenityapexlegends3940 Год назад
If he doesn't show the code, it's likely fake
@SachitaThakur-d6p
@SachitaThakur-d6p 7 месяцев назад
😢 without code this robo can't move ​@@xerenityapexlegends3940
@jkfatima3647
@jkfatima3647 6 месяцев назад
Thank u uncle for the amazing idea my teachers was very proud of me ❤
@sensorchannel
@sensorchannel 7 месяцев назад
Very good project
@gavitmilind77
@gavitmilind77 Год назад
Please give coding and specification and rating of all products if you not sell project
@bat-erdeneganhuyag7287
@bat-erdeneganhuyag7287 Год назад
Hello can u this projects code share white us ?? Ty
@vinutharanir3316
@vinutharanir3316 28 дней назад
Sir please upload Coding 😢🙏🙏🙏
@PriyankaKurale-f6u
@PriyankaKurale-f6u Год назад
Very Nice project
@yashasbedu9917
@yashasbedu9917 11 месяцев назад
Sir like i want to thank you very much
@sowmyabr7850
@sowmyabr7850 Год назад
Hi sir please can get the program which you have used in this project
@Unknown-bv2cv
@Unknown-bv2cv Год назад
What is the source code for it , do anyone know
@CARSEDITZ06
@CARSEDITZ06 Год назад
// 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 Год назад
​@@CARSEDITZ06 hii can we do it in python also please tell
@CARSEDITZ06
@CARSEDITZ06 Год назад
@@NAVDEEPKAUR-mn7ew no, if you're asing arduino type controllers you need to programme in c or c++ language
@nobodynobody3696
@nobodynobody3696 Год назад
@@CARSEDITZ06 .
@Roshankumar-ld3lr
@Roshankumar-ld3lr Год назад
Cod kam kar raha
@LilashaktiBendre
@LilashaktiBendre Год назад
Dhanayavad bhava तुझ्या मुळे मला inspire award madhe 5000 milale
@jack_sparrow36277
@jack_sparrow36277 11 месяцев назад
Super level of explanation
@smeetamore6057
@smeetamore6057 7 месяцев назад
Best Project Sir I will make it for my science project ❤❤
@srinivasvlog903
@srinivasvlog903 Год назад
Pleas tell how to make a iron man hand
@class10batch3
@class10batch3 9 месяцев назад
very good
@class10batch3
@class10batch3 9 месяцев назад
chok
@class10batch3
@class10batch3 9 месяцев назад
chok
@class10batch3
@class10batch3 9 месяцев назад
chok
@class10batch3
@class10batch3 9 месяцев назад
chod
@class10batch3
@class10batch3 9 месяцев назад
chopqw
@madhaviharinkhede9402
@madhaviharinkhede9402 7 месяцев назад
Sir how much money to make it
@kingman5977
@kingman5977 5 месяцев назад
Sir it will be very helpful if you upload some english subtitles
@sharmilapatil9081
@sharmilapatil9081 11 месяцев назад
What code did you upload ?
@allinonewithsiblings8113
@allinonewithsiblings8113 11 месяцев назад
#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(); } }
@RukkiyaPatel
@RukkiyaPatel 17 дней назад
Hello sir please sare gadget ke name bata do
@kumarmanda934
@kumarmanda934 8 месяцев назад
Arduino UNO fire fighting robot how can canoct laptop please.
@GazipuiraGamerBD
@GazipuiraGamerBD 8 месяцев назад
Thanks but I need coding
@MdJamil-yo9fk
@MdJamil-yo9fk 8 месяцев назад
Please add the link of kit
@Smartech-PS
@Smartech-PS 11 месяцев назад
Sir plzz saare material 2000 mein aa sakte hai kya sir
@sunithaa9835
@sunithaa9835 7 месяцев назад
Bro please send coding in description
@MamtaChilkoti
@MamtaChilkoti 2 месяца назад
Hello sir Mene inspire award ke liye ye project silect Kiya hai peleas iska uploading code bta dijiye mein aapka subscriber hu sir please
@vineetapatel333
@vineetapatel333 28 дней назад
Aap kanha se ho
@user-bo5nj6jn6z
@user-bo5nj6jn6z 7 месяцев назад
Thanks but need coding sir
@SaralaJoursy
@SaralaJoursy 24 дня назад
😂
@vidhyapawar4207
@vidhyapawar4207 Год назад
कोणता प्रोग्राम अपलोड करायचा आहे
@HUYHANMA
@HUYHANMA Год назад
Love helo viet nam city
@myfriendsdiamond2605
@myfriendsdiamond2605 Год назад
Super brother❤
@RahuKumar-pe6fj
@RahuKumar-pe6fj Месяц назад
Hello Sar coding ismein kya Dalenge coding please bhej dijiye
@Harshraval747
@Harshraval747 9 месяцев назад
Best sir superb
@Artz7k
@Artz7k Год назад
Sir plzz tell the cost of it
@roopahipparagi8502
@roopahipparagi8502 9 месяцев назад
Hello sir how to upload program in Arduino Uno with laptop
@munnadiamondchips6528
@munnadiamondchips6528 8 месяцев назад
Same problem
@Indianbeast-A1
@Indianbeast-A1 3 месяца назад
Please tell me what is the approx price required in making of it
@deepakgaming6454
@deepakgaming6454 13 дней назад
Siir ye left and right ja sakta haikya??
@cubesolver7565
@cubesolver7565 Год назад
Sir code dedijiye
@AVR.shorts
@AVR.shorts Год назад
Are isme sir hamara Ghar chala jayega😅😅
@Keerthikrishna-d3y
@Keerthikrishna-d3y Год назад
sir please mention the wanted equipments sir
@bablipal7933
@bablipal7933 Год назад
Sir please coding ki video de dejiye
@MdJamil-yo9fk
@MdJamil-yo9fk 8 месяцев назад
Please post the coding process of robot
@self_gaming716
@self_gaming716 Месяц назад
#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(); } }
@Piyush-qu2ef
@Piyush-qu2ef 12 дней назад
​@@self_gaming716motor nahi chal rahi hai kya problem ho sakta hai
@self_gaming716
@self_gaming716 12 дней назад
@@MdJamil-yo9fk I don't know
@self_gaming716
@self_gaming716 12 дней назад
@@MdJamil-yo9fk this comond copy in the other comments
@vuddemarripramod3541
@vuddemarripramod3541 7 месяцев назад
Hello sir please upload the code I have made this seeing your video i need a code to run the project sir
@advaithvarrier2K13
@advaithvarrier2K13 5 месяцев назад
Sir, Can I use IR sensor instead of Flame Sensor?
@gamerminecraft33
@gamerminecraft33 9 месяцев назад
hey guys the same code is available in quartz components
@xendex1
@xendex1 Год назад
@vmk technical power can u pls tell me why my motors are running when there is no fire anywhere still its running
@sehbarmushtaq8914
@sehbarmushtaq8914 Год назад
sir arduino uno mai konsa programe dalna hai
@abhishekchavan2123
@abhishekchavan2123 Год назад
Sir plz provide code
@Preethamkumer
@Preethamkumer 2 месяца назад
How to programming sar
@shrijitadatta3725
@shrijitadatta3725 26 дней назад
Sir ,Can we use python for coding ?
@mahfuzamaya3217
@mahfuzamaya3217 6 месяцев назад
Which programming language you used here?
@satyenpatra2563
@satyenpatra2563 Год назад
Sir this project ki speech ta do
@user-dh5dl8wm6c
@user-dh5dl8wm6c 10 месяцев назад
thank you we have a project in our school. this video is help us to made. an we got 1st in district level
@bikramyadav6432
@bikramyadav6432 14 дней назад
Hello sir program instell karna ka Lea program Kaisa likha plz reply back.
@amritlalratnakar1027
@amritlalratnakar1027 17 дней назад
Hello sir how to open a program and I have not laptop but I have computer
@JyotiGupta-jq2vw
@JyotiGupta-jq2vw Месяц назад
Sir I want to make this project for our science exhibition please can you kindly share the code please sir!!!
@abhisekh0
@abhisekh0 11 месяцев назад
wheels are not working what to do ? i followed step by step
@264hamnaamir5
@264hamnaamir5 9 месяцев назад
same question from my side do you get an answer
@freefirevlog3681
@freefirevlog3681 11 месяцев назад
Sir Arduino Uno ka code bata digya is project ka liya mara sa nahi ho rha ha comments box ma pdf dal digya
@_YT__ABHAY__REAL__FACT__1000_
@_YT__ABHAY__REAL__FACT__1000_ 5 месяцев назад
Give the code and create diagram 😊❤
@slsumanalatha5611
@slsumanalatha5611 29 дней назад
Sir robot car kit control phone 😮
@vjvijay1837
@vjvijay1837 2 месяца назад
Please provide code for this project tmrw is my project submission
@CHANDANACE-w2b
@CHANDANACE-w2b 5 дней назад
Ye saman kaha se kharide
@sk_gaming262
@sk_gaming262 6 месяцев назад
Sir some additional parts. Can you tell
@xo_bhavesh_xo
@xo_bhavesh_xo Год назад
Sir material Kha se milega
@user-qf9we7rm1h
@user-qf9we7rm1h Год назад
Sir material ka list dejiye plzzz...
@AyushArya-w7d
@AyushArya-w7d Год назад
I want to buy this project ❤
@KusumBasumatary-k1y
@KusumBasumatary-k1y Год назад
Sir apka video mein awaz jaada acha nahi aata hai 😢
@yashasbedu9917
@yashasbedu9917 11 месяцев назад
Sir,truly thank you😊
@mujahid-ym2ys
@mujahid-ym2ys 9 месяцев назад
Hello sir is robot ki coding de dijiye
@josesilva9540
@josesilva9540 Год назад
does anyone know the code?
@marjahan3602
@marjahan3602 10 месяцев назад
ভাইজান আমি আপনার প্রত্যেকটা ভিডিও দেখি,😢 কিন্তু আমার কাছে টাকা নেই এজন্য আমি আপনার মত কিছুই বানাতে পারি না
@VeenaBekwadkar-jh7nf
@VeenaBekwadkar-jh7nf Год назад
Sir how much cost can go for this project
@CARSEDITZ06
@CARSEDITZ06 Год назад
Around 1k to 1.5k
@dineshojha478
@dineshojha478 3 месяца назад
koi material required bta do plezzzzzzzzzzzz
@fatimazahraaitbaali8618
@fatimazahraaitbaali8618 10 месяцев назад
thank you sir , please , can i get the code of this project .
@chetansarda-m8s
@chetansarda-m8s 8 месяцев назад
Sir what are the things used
@AakashSystem
@AakashSystem Год назад
Sir ye sari chije available bhi toh krao kaha se milengi our programing kaha se laye
@hemajangid5493
@hemajangid5493 9 месяцев назад
Sir please make this robot without arduino
@user-mv3nf8vz5i
@user-mv3nf8vz5i Год назад
amazing ❤❤
@shankartiwari2398
@shankartiwari2398 Год назад
Code kya hai
@shankartiwari2398
@shankartiwari2398 Год назад
Aapke pass hai kya code
@YogiAhir-j6r
@YogiAhir-j6r Год назад
Sir kod dijiye
@RukkiyaPatel
@RukkiyaPatel 17 дней назад
Hello sir ismein jo bhi chije work karte Hain uske Name bhejiye
@kinjalhajeri2011
@kinjalhajeri2011 24 дня назад
Sir aap iska code poora dekha dejiye Hame kya type karna hai vo samajh nahi araha hai
@FARHAN_-
@FARHAN_- Год назад
Sir codes plz
@vgscreation8548
@vgscreation8548 Год назад
What is afull cost of this project
@TalhaJubayerPriom
@TalhaJubayerPriom Год назад
Can I get the vedio of this programming
@Sarveshk9468
@Sarveshk9468 11 месяцев назад
Sir coding plz❤❤❤❤❤
@RanaAwais-yg8mv
@RanaAwais-yg8mv Год назад
Bhai please how make arc creator of iron man
@Xavierraj-v2y
@Xavierraj-v2y Год назад
Sir this project is easy making and super robot thank you so much sit 🎉🎉🎉❤❤❤❤
@chandanam6961
@chandanam6961 11 месяцев назад
U already did this project
@Xavierraj-v2y
@Xavierraj-v2y 11 месяцев назад
Yes sir already made it this project
@ABHINAVKRISHNA-ho5nn
@ABHINAVKRISHNA-ho5nn 11 месяцев назад
​@@Xavierraj-v2y can you share circuit and code
@264hamnaamir5
@264hamnaamir5 9 месяцев назад
can you give me a code for this
@gajjubhyt1325
@gajjubhyt1325 9 месяцев назад
GAND FAT GYI ISSE BANANE MA
@kerengill2081
@kerengill2081 Год назад
Hello sir, can you please share the code for this🥺
@saicharan8513
@saicharan8513 Год назад
Bro reply
@anisha6621
@anisha6621 Год назад
Bro...code chahiye
Далее
I Built A Robot Waiter
13:42
Просмотров 977 тыс.
How To Make DIY Arduino Gesture Control Robot At Home
8:53
ROCKET that LITERALLY BURNS WATER as FUEL
19:00
Просмотров 2,7 млн
Recreating a Banned Toy from the 1980s
10:44
Просмотров 1,7 млн