If you want to buy Components then you can contact me on WhatsApp +91 9332912239 , I am happy to ship you 😊 Here is the Schematics and Code: circuitbest.com/arduino-bluetooth-controlled-car-with-front-back-lights-using-arduino-uno-l293d-motor-driver-hc-05/ Enjoy :)
Worked like a charm. Each and every steps are clear. Code is fantastic. Even a beginner can understand the code easily. Looking forward for seeing more videos from you. Love from India ❤️
Perfect and the details you provide in the link in the description is extraordinary detailed and clear with comprehensive explanation, great effort and very well done, many thanks
@@MakeDIY9 I have made this project just now but don't know why it's speed is too slow but after I remove its tyre even though it's motor speed is too slow....what can I do sir
@@rakeshanjani3481 bro its arduino , you have to copy the code he has given and upload it. You can download it like shown in this video: ruclips.net/video/TbHsOgtCMDc/видео.html
@@ujjwalcde2241 the one in the description doesn’t work because it gives me a link to download the app from the web (and it is not possible to download an app like this), instead of redirecting me to the AppStore, and when I searched for it on the AppStore, I couldn’t find it
No bro those leds only takes 20mA of current it is barely noticeable. But the motors that are the culprit for the main discharge. But if you want you can remove the leds and also make the car 😃
@@MakeDIY9 Ok thank you so much bro!! I loved your replies and projects👍👍. Btw even I make Arduino & electronic projects so if you want to you can check it you're most welcome to my channel. I loved your project, keep it up amazing work🤘👌👍(I have subbed to your channel)
Most Of These Videos Are Fake. But This Video And Channel Shows That it Does Not Need To Be Fake. The Editing Is Immaculate, as so The Tutorial On The Computer. And The RC Car Looks And Drives Amazingly. This Channel Deserves a Subscribe And A Like To Each Of Its Videos.
@@MakeDIY9 I have made this project just now but don't know why it's speed is too slow but after I remove its tyre even though it's motor speed is too slow....what can I do si
@@MakeDIY9 I have made this project just now but don't know why it's speed is too slow but after I remove its tyre even though it's motor speed is too slow....what can I do sir
#include #include #include Servo towerprosg5010; int pos = 10; int HM10_RX_PIN = 50; int LED_PIN = 48; int HM10_TX_PIN = 51; AF_DCMotor motor1(1); AF_DCMotor motor2(2); AF_DCMotor motor3(3); AF_DCMotor motor4(4); SoftwareSerial bluetoothSerial(HM10_RX_PIN, HM10_TX_PIN); void setup() { bluetoothSerial.begin(9600); pinMode(LED_PIN, OUTPUT); towerprosg5010.attach(9); } void loop() { if (bluetoothSerial.available()) { char command = bluetoothSerial.read(); if (command == '1') { digitalWrite(LED_PIN, HIGH); // Turn on the LED } else if (command == '0') { digitalWrite(LED_PIN, LOW); // Turn off the LED } else { // Stop the motors for any other command (including no command) stopMotors(); // Execute specific commands if needed if (command == 'F') { forward(); } else if (command == 'B') { backward(); } else if (command == 'R') { right(); } else if (command == 'L') { left(); } else if (command == '2') { towerprosg5010.write(0); delay(100); } else if (command == '3') { towerprosg5010.write(180); delay(100); } } } } // Function to move the car forward void forward() { motor1.setSpeed(255); motor1.run(FORWARD); motor2.setSpeed(255); motor2.run(FORWARD); motor3.setSpeed(255); motor3.run(FORWARD); motor4.setSpeed(255); motor4.run(FORWARD); } // Function to move the car backward void backward() { motor1.setSpeed(255); motor1.run(BACKWARD); motor2.setSpeed(255); motor2.run(BACKWARD); motor3.setSpeed(255); motor3.run(BACKWARD); motor4.setSpeed(255); motor4.run(BACKWARD); } // Function to turn the car right void right() { motor1.setSpeed(255); motor1.run(BACKWARD); motor2.setSpeed(255); motor2.run(BACKWARD); motor3.setSpeed(255); motor3.run(FORWARD); motor4.setSpeed(255); motor4.run(FORWARD); } // Function to turn the car left void left() { motor1.setSpeed(255); motor1.run(FORWARD); motor2.setSpeed(255); motor2.run(FORWARD); motor3.setSpeed(255); motor3.run(BACKWARD); motor4.setSpeed(255); motor4.run(BACKWARD); } // Function to stop the motors void stopMotors() { motor1.setSpeed(0); motor1.run(RELEASE); motor2.setSpeed(0); motor2.run(RELEASE); motor3.setSpeed(0); motor3.run(RELEASE); motor4.setSpeed(0); motor4.run(RELEASE); } thats a old code I have for a rc car I made a few years ago you will have to change the rx and tx pins in the code I have 1 LED added in there and a servo (You can just leave them in the code) but you can change the pin of the LED to match a pin on your board and add more if you have room hope it works for you also remember to put the rx of the bluetooth module to the tx of your board and the tx to the rx of your board if you are using uno it's pin 0 and 1
NO había encontrado NUNCA una empresa que fuera tan generosa con lo que hace como USTEDES. De verdad muchas gracias y espero pronto poder preguntarles cosas y ofrecer mis servicios para lo que necesiten y esté en mi mano dárselo Gracias.
I have made this project just now but don't know why it's speed is too slow but after I remove its tyre even though it's motor speed is too slow....what can I do sir
Is the voltage rating of the battery and holder sufficient for 4 motors? I tried using 9V DC supply connected to the jack in the arduino uno board and it can only support 3 motors and when I put it in 12V that's when it can run all 4 motors.
I did the same things as u did but my car is not working properly. I checked everything and I made thrice but also it's not working properly.May I get your help please 🥺?
Sir i am attaching a servo motor as well in this, how much voltage should i give to the motor driver shield? Please tell i have a national level competition.
hello, I have made a similar project on my own, and I've connected 2 9v batteries but that just doesnt seem to do the job, are 2 18650 batteries better than using 2 9v batteries. Please reply I'm desperate at this point :P
Bro need help from u side i have questions can we use hm10 blutooth module in diy car control . And second why hm 10 bluetooth module is not paring with Android device
Well if you have even a grain of salt worth of idea how these things, or lets just say electricity works, the you'd know the answer lol Obviously it would work, the LEDs are optional as they work with the same power source and commands at the motors (are parallel to the motors) so you can keep the LEDs, remove them, or replace them by buzzers or anything else lol
If you want to buy Components then you can contact me on WhatsApp +91 9332912239 , I am happy to ship you 😊
Here is the Schematics and Code: circuitbest.com/arduino-bluetooth-controlled-car-with-front-back-lights-using-arduino-uno-l293d-motor-driver-hc-05/
Enjoy :)
This link doesn’t work
Plz give me code
Give me code
Code is not downloading.
Please send blutooth app link
Give it minimum 12 volt, and upload code well, and take care of connecting rx and tx with bt module carefully it will work definitely
Worked like a charm. Each and every steps are clear. Code is fantastic. Even a beginner can understand the code easily.
Looking forward for seeing more videos from you.
Love from India ❤️
Can you send the mobile application file in (aia) format to add other specifications ??
@@mohammedasfour684 code link is not working.
where i find the code.
ruclips.net/video/jZccpvVWn0M/видео.html
How much rpm motor
ruclips.net/video/yu3at4F9CFs/видео.html
Thanku sir just make in 1 Hour by watching this tutorial very helpful
Working 💪
Ive made this project and its amazing, soon i will 3d print the whole car, even wheels and it will be even better
Niceee 😄😄
Hi, can I ask what the whole printed car looks like? I would need some design for the car body to cover the components, Arduino, etc..
@@Magic-wz1zs ive done it in fusion 360 hobby use
@@judlex7300 hi
@@Ravirajiitbombay ??? Hi i guess?
Thanks to you, I'm about to build my first dream car too.
Bro the app is not connecting
“I loved watching your video! It’s inspired me to make my own videos in a similar style. Your content is really motivating and helpful!”
Perfect and the details you provide in the link in the description is extraordinary detailed and clear with comprehensive explanation, great effort and very well done, many thanks
Thank you so much 🥰
Don't forget to Subscribe:)
@@MakeDIY9 plz give the link of code
ruclips.net/video/jZccpvVWn0M/видео.html
How much rpm motor
@@MakeDIY9 I have made this project just now but don't know why it's speed is too slow but after I remove its tyre even though it's motor speed is too slow....what can I do sir
The lights are a nice touch. I also appreciate the zip ties for a nice clean look. 👌
Glad you like them!
thanks a lot man , it works , keep it up , great job
Don't forget to subscribe 😉
Bro plz help.me yar...what is at 9.24 ?? Which software..is this ??
@@MakeDIY9 sir i have spent 3000+ in this project but i didnt understand what to do at 9.24 ??? What is that ?? Which software ?? Plz help me sir..
@@rakeshanjani3481 bro its arduino , you have to copy the code he has given and upload it. You can download it like shown in this video:
ruclips.net/video/TbHsOgtCMDc/видео.html
bro whats the cost
détaillé, clair, complet : superbe. Merci !
ruclips.net/video/jZccpvVWn0M/видео.html
i like his soldering iron tip and soldering skills
Keep it up bro!
Thank you 😊
It works, I made it you have to install Ada fruit motor shield otherwise it will show you error AF. Motor was not declared in this scope..
Yes you have to install the same library as shown in the video.
@@MakeDIY9 yes thx bcs of u today it's working..... 🙏
where can we download the app
I can’t find the app “Make DIY”
Check in description
@@ujjwalcde2241 the one in the description doesn’t work because it gives me a link to download the app from the web (and it is not possible to download an app like this), instead of redirecting me to the AppStore, and when I searched for it on the AppStore, I couldn’t find it
its amazing how you made such a simple project into a good quality video, i liek the lighting
Que aplicación se usó para exportar el código al arduino?👀
creo es Arduino IDE
This was the best video that i saw , and hell i will subscribe to this channel only for the sake of that
Great video, can you please give a link for the led holder for the car please
Very useful for my science club
What app you use to design wiring please?
Arduino IDE
You deserve a lot of appreciation for this great work.
Looking forward for more these type of videos
Bro I connected with the app and paired it too and it showed gree colour also but it's not moving pls help
Did you get any solution?
Bhai yhi hota hai... Mere sath bhi yhi ho rha hau jina easy lgta hau nhi... Sb krne ke baad command nhi maan rha
Did you Uploaded the code
u will have to attach a higher volt battery
@@khushboogosalia9675 is it working for you?
this project really very interrasting
Awesome project bro!! But one question, is it possible to use a 9v battery instead??
It may work but car will run for few minutes only
@@MakeDIY9 Ok thanks for replying. So will it last longer if I take off those LED's ??
No bro those leds only takes 20mA of current it is barely noticeable. But the motors that are the culprit for the main discharge. But if you want you can remove the leds and also make the car 😃
@@MakeDIY9 Ok thank you so much bro!! I loved your replies and projects👍👍. Btw even I make Arduino & electronic projects so if you want to you can check it you're most welcome to my channel.
I loved your project, keep it up amazing work🤘👌👍(I have subbed to your channel)
you can use two 9v battrey
I'm looking for this video for a long time thx🚀❤🚀
You are welcome 🤠
Most Of These Videos Are Fake. But This Video And Channel Shows That it Does Not Need To Be Fake. The Editing Is Immaculate, as so The Tutorial On The Computer. And The RC Car Looks And Drives Amazingly. This Channel Deserves a Subscribe And A Like To Each Of Its Videos.
Do you have any Proteus Circuit Simulation for reference? And very clean information love it ❤️
I haven't simulated it but i done it practically....🙂
ruclips.net/video/jZccpvVWn0M/видео.html
@@MakeDIY9 I have made this project just now but don't know why it's speed is too slow but after I remove its tyre even though it's motor speed is too slow....what can I do si
@@MakeDIY9 I have made this project just now but don't know why it's speed is too slow but after I remove its tyre even though it's motor speed is too slow....what can I do sir
@@MakeDIY9uygulamnın linki lütfen 😢
Thank you Mr make diy it was nice and my project is also working
Which app u have used ??
please provide complete code, very useful information.
i do not no
#include
#include
#include
Servo towerprosg5010;
int pos = 10;
int HM10_RX_PIN = 50;
int LED_PIN = 48;
int HM10_TX_PIN = 51;
AF_DCMotor motor1(1);
AF_DCMotor motor2(2);
AF_DCMotor motor3(3);
AF_DCMotor motor4(4);
SoftwareSerial bluetoothSerial(HM10_RX_PIN, HM10_TX_PIN);
void setup() {
bluetoothSerial.begin(9600);
pinMode(LED_PIN, OUTPUT);
towerprosg5010.attach(9);
}
void loop() {
if (bluetoothSerial.available()) {
char command = bluetoothSerial.read();
if (command == '1') {
digitalWrite(LED_PIN, HIGH); // Turn on the LED
} else if (command == '0') {
digitalWrite(LED_PIN, LOW); // Turn off the LED
} else {
// Stop the motors for any other command (including no command)
stopMotors();
// Execute specific commands if needed
if (command == 'F') {
forward();
} else if (command == 'B') {
backward();
} else if (command == 'R') {
right();
} else if (command == 'L') {
left();
} else if (command == '2') {
towerprosg5010.write(0);
delay(100);
} else if (command == '3') {
towerprosg5010.write(180);
delay(100);
}
}
}
}
// Function to move the car forward
void forward() {
motor1.setSpeed(255);
motor1.run(FORWARD);
motor2.setSpeed(255);
motor2.run(FORWARD);
motor3.setSpeed(255);
motor3.run(FORWARD);
motor4.setSpeed(255);
motor4.run(FORWARD);
}
// Function to move the car backward
void backward() {
motor1.setSpeed(255);
motor1.run(BACKWARD);
motor2.setSpeed(255);
motor2.run(BACKWARD);
motor3.setSpeed(255);
motor3.run(BACKWARD);
motor4.setSpeed(255);
motor4.run(BACKWARD);
}
// Function to turn the car right
void right() {
motor1.setSpeed(255);
motor1.run(BACKWARD);
motor2.setSpeed(255);
motor2.run(BACKWARD);
motor3.setSpeed(255);
motor3.run(FORWARD);
motor4.setSpeed(255);
motor4.run(FORWARD);
}
// Function to turn the car left
void left() {
motor1.setSpeed(255);
motor1.run(FORWARD);
motor2.setSpeed(255);
motor2.run(FORWARD);
motor3.setSpeed(255);
motor3.run(BACKWARD);
motor4.setSpeed(255);
motor4.run(BACKWARD);
}
// Function to stop the motors
void stopMotors() {
motor1.setSpeed(0);
motor1.run(RELEASE);
motor2.setSpeed(0);
motor2.run(RELEASE);
motor3.setSpeed(0);
motor3.run(RELEASE);
motor4.setSpeed(0);
motor4.run(RELEASE);
}
thats a old code I have for a rc car I made a few years ago you will have to change the rx and tx pins in the code I have 1 LED added in there and a servo (You can just leave them in the code) but you can change the pin of the LED to match a pin on your board and add more if you have room hope it works for you also remember to put the rx of the bluetooth module to the tx of your board and the tx to the rx of your board if you are using uno it's pin 0 and 1
I made this 5 years back still working,
Please make a gesture controlled robot with 433 Mhz module
Ok
NO había encontrado NUNCA una empresa que fuera tan generosa con lo que hace como USTEDES. De verdad muchas gracias y espero pronto poder preguntarles cosas y ofrecer mis servicios para lo que necesiten y esté en mi mano dárselo Gracias.
Hi, I tried your code and car assembly and worked like a charm! However is there a way to vary the car speed?
Change the code and if it doesnt work buy better motors
Change the speed values it will do the work
@@MakeDIY9 Yes, but if you want really good speed you would need brushless motors and better car build
How much rpm is the motor?
bro whats the cost
So hardwork you need appreciation
Can you make 2 wheel balancing robot with this shield?
Its workkkk!!! I can`t believe that arduino is so cool!
How much volts battery need to be chosen?
Max 12v is great
@@MakeDIY9 and what about amps sir. I am allways get confused how to select volt and amprs for any electronic applications. Please clarify me sir.
2 amps are ok
Loved the Wifi Name Lol !! 🤣
😂😂
Really work hard tells how to made a simple project
Impressive Bluetooth connecting 🚗
thank you so much for this video
our project worked succsessfully
love how ardino's work
Good afternoon, the wire you used for welding is a copper wire.
Unbelievable........very good effort 👍
Bhai tumne iska mein kaun sa software dala hai kuchh samajh mein nahin a Raha
Nice Mind-blowing work ❤
is this work properly?
I have made this project just now but don't know why it's speed is too slow but after I remove its tyre even though it's motor speed is too slow....what can I do sir
What is difference between hm10 and hc 05 both are same use in any where or aany differenence on that
You provide me perfect guide about project 🙂
Can I use a 9volt hlw battery instead of li-ion battery
Yes you can but it discharge fast and it's not rechargeable
This Car Is Really Amazing 💯💯💯💯💯
I am building a car like this
But if I have to set it up on the computer for what it is to set up, it will be very useful to show me a little bit
You have good knowledge of motors connection that's why you easily control the faults mind-blowing
It's been 3 years since this video, can I still make this.. or is it outdated? Please reply as I want to make my IOT project.
Yes u can
Can i use normal 9volt battery from HIW ?
Pls tell me that total money kitna lagega pure project m
Nice toys manufacturing in home 😁
Ardino are always so cool
Can i use the normal dc Motor insted of using gear motor
the material did you used to make it plz tell me bcz i want to try it for my school lab
fast technical support 💪💪
Wow you make an awesome project but it's costly can you please tell from where to find all components at a low cost, please
Is the voltage rating of the battery and holder sufficient for 4 motors? I tried using 9V DC supply connected to the jack in the arduino uno board and it can only support 3 motors and when I put it in 12V that's when it can run all 4 motors.
BRO dis is wery good project tenks
😊❤
Welcome
Please make more videos like this one
That's great,,,, highly appreciateable,, having great mind bro 👏👍
Good efforts i appreciate your work
I did the same things as u did but my car is not working properly. I checked everything and I made thrice but also it's not working properly.May I get your help please 🥺?
What screw driver are you using
Sir i am attaching a servo motor as well in this, how much voltage should i give to the motor driver shield? Please tell i have a national level competition.
Great work boss you are awesome
hello, I have made a similar project on my own, and I've connected 2 9v batteries but that just doesnt seem to do the job, are 2 18650 batteries better than using 2 9v batteries. Please reply I'm desperate at this point :P
Bro the code is not working did you get right.i am getting error at header file #include
@@rayhansyed6549 install version 1 adafruit motor shield library
Is project ke liye original dc motor use nhi ho sakti Hai Kya?
Ultimate bro super and simple
Which app did you use on the phone? I want to do it in Turkey, but which application would be healthier for me, thank you.
pls tell me that can i make this project without led lights ?
Very useful informative video 👏🏻👏🏻👏🏻👏🏻
Super Video
Bro need help from u side i have questions can we use hm10 blutooth module in diy car control .
And second why hm 10 bluetooth module is not paring with Android device
Bro kiya ham isme 11.7 v ki battery de sakte hai kya kiyo ki mai 12v ki motor use kar raha hu please bro bata dena
Do I only need to use it with this app?
Asalomu alaykum siz shu mashinani qanday dasturlaganizni aytolmaysizmi
Q1) what app u r using for arduino's code?
Q2) and what app u r using for controlling the car?
plz reply its urgent
THANKS ALOT it worked
can you upload a code for this car to have a horn (buzzer)
can the code still work without the led part?
Well if you have even a grain of salt worth of idea how these things, or lets just say electricity works, the you'd know the answer lol
Obviously it would work, the LEDs are optional as they work with the same power source and commands at the motors (are parallel to the motors) so you can keep the LEDs, remove them, or replace them by buzzers or anything else lol
Bro if we don't add lights,will it work?
Such a smart mind😊
3.51 -> beauty of abstraction :)
If I use HM-10 Bluetooth module is this codes work? Or I need to alter some codes?
Do you have self Balancing robot project using L293d motor shield?
Que apliclacion utilizas en la pc para poner el codigo en el arduino
I loved this video so much😍
Which one is the Bluetooth +ve?
Is 220 ohm resistor fine?
Yes
@@MakeDIY9 the car works well but after 2-3 days it disconnects in every 5 minutes from bluetooth module...please help
The resistor you have used is of how much ohms
i like the video editing, and it has good video quality
awesome and like the way you go
Can i connect servo to this module
Which one is the Bluetooth module +ve wire