Smartphone Controlled Arduino 4WD Robot Car ( Part - II )

preview_player
Показать описание
#arduinocar, #bluetoothcar, #smartphone_controlled_car
This video shows how to make a Smartphone controlled Arduino Robot Car.

********************************************************************
Project Details :

Down;oad the Code :

Download the app :

***********************************************
Parts :

8. 0.5 sqmm Wires



8. Smartphone

Tools Required :

***************************************************************

Music credit :
Рекомендации по теме
Комментарии
Автор

Finally found a video that could explain easily and give product links too thanks

clashfun
Автор

Man I couldn't find this vid until now and I already bought this Arduino and couldn't make it till now thanks!

ahmadeshon
Автор

Gracias por tu video, resulta muy claro. Tenia dudas como se controlaban cuatro motores con un solo L298 y veo que son en paralelo

juancalle
Автор

HERE IS THE CODE (TRANSLATED IN ENGLISH)


Int izqA = 5;
Int izqB = 6;
Int derA = 9;
Int derB = 10;
Int vel = 255; // Speed ​​of the motors (0-255)
Int state = 'g'; // start stopped

Void setup () {
Serial.begin (9600); // initiates the serial port for communication with the Bluetooth
PinMode (derA, OUTPUT);
PinMode (derB, OUTPUT);
PinMode (left, OUTPUT);
PinMode (left, OUTPUT);
}

Void loop () {

If (Serial.available ()> 0) {// reads bluetooth and stores in state
State = Serial.read ();
}
If (state == 'a') {// Forward
Serial.println (state);
AnalogWrite (derB, 0);
AnalogWrite (izqB, 0);
AnalogWrite (derA, vel);
AnalogWrite (left, vel);
}
If (state == 'd') {// right
Serial.println (state);
AnalogWrite (derB, vel);
AnalogWrite (izqB, 0);
AnalogWrite (derA, 0);
AnalogWrite (left, vel);
}
If (state == 'c') {// Stop
Serial.println (state);
AnalogWrite (derB, 0);
AnalogWrite (izqB, 0);
AnalogWrite (derA, 0);
AnalogWrite (left, 0);
}
If (state == 'b') {// left
Serial.println (state);
AnalogWrite (derB, 0);
AnalogWrite (izqB, vel);
AnalogWrite (left, 0);
AnalogWrite (derA, vel);
}

If (state == 'e') {// Reverse
Serial.println (state);
AnalogWrite (derA, 0);
AnalogWrite (left, 0);
AnalogWrite (derB, vel);
AnalogWrite (izqB, vel);
}
If (state == 'f') {// ON button moves sensing distance

}
If (state == 'g') {// OFF button, stops the motors does nothing
}
}

dhruvkamal
Автор

Thanks sir. It really helped me. I was not able found a video that makes SmartPhone Controlled car using arduino nano. Thanks Again.

anish
Автор

Are 2 Li Ion batteries really enough to run all 4 motors? and for how long can they run them?

gamingmonts
Автор

This is nice But "DIY Projects By Sumit" Also Teaches Nice But you Explain Very Nicely

Rekha_PATIL
Автор

Hey OGE! I wanna ask you if I can use an arduino nano every instead of ardunio nano? Does I need to change anything? Does it affect in any way?

miliismyname
Автор

The video is very nice I like open green energy

smitgorasiya
Автор

your code is missing # include<servo.h>, is it not required to use the servo library? just curious

Isotope
Автор

good job, very good looking robot I have seen till now

rahulmoorkoth
Автор

Instead of arduino nano we can use arduino uno or not???....plz reply fast....

jeetrajwani
Автор

Great video, nicely filmed, and music not to bad. Thanks.

moeshickenyay
Автор

Why my Bluetooth hc06 doesn't light up????.

Rctk_
Автор

I did it exactly as you did, but my bluetooth module does not send the signals, why?

joseabelbanuelosteres
Автор

What the code I have to use for this???

energyrovers
Автор

Hi, I've a similar kit, but I have a doubt about the Batteries, can I use 2 x 3, 7-1600mah batteries or maybe 6 x AA of 1, 5-2500mah? which is the best option? thanks

v-tt
Автор

please give me Smartphone Controlled Arduino 4WD Robot Car ( Part - II ) Arduino

mithunchandro
Автор

Did you configure your bluetooth hc 05 module? Mine is not getting steady led glow. It is blinking at regular intervals even after pairing with android device. What should I do? plz help

IrfanAnsari-wshv
Автор

su programacion donde puedo conseguir?

dahianaescobar