Can we use L293D motor driver Module to run 4 wheels ?and i read that L293D drive only 2 motors so how other 2 motor will run ,turn right left ?And also L293D drive 4 motors but only one direction means what ?how we should connect 4 motor wires so that all 4 motor will run by driver L293D?
Bro, I don't understand the ultrasound function of your robot, the program you created didn't code the ultrasound sensor .. why do you only use a sensor for decoration?
Bro plzz tell which camera r u using
canon 200D. i have 2 lens.18-55 mm and 50mm 1.8.and i also color grading in my video editing Software
ping me in my fb id
facebook.com/profile.php?id=100006930168621
@@SaptarshiSikder ohk thanks for ur reply
@@SaptarshiSikder bro may har Saturday ko video upload karta hoon, lekin mujhe views he nahi atte, may kya karo
App kya kya karte hoo apke videos ko views aur subscriber badhane keliye
bro i have same chase but due to load it cannot turn left and right. please help me
Bro send codeing me please
So, we can control it with our mobile phone by simply downloading by rc controller. Ri8?
yes
Sir ye kitni rpm ki motor hai
check description
Thanks sir 300 rpm ki motor hai
😍 lovely
sir aapne distance sensor kahape join kiya
o joint nehi kiya dekhne acche k liye usko lagaya or kuch nehi
hum use laga nahi sakte kya sir
i have dowload the file in that i got only code and diagram can you give the library suprately
Can we use L293D motor driver Module to run 4 wheels ?and i read that L293D drive only 2 motors so how other 2 motor will run ,turn right left ?And also L293D drive 4 motors but only one direction means what ?how we should connect 4 motor wires so that all 4 motor will run by driver L293D?
no
@@SaptarshiSikder ?
bro .left side connecte 2 motor with the help of 2 pair of each wire . and same to the right . forming totally 4 motors
Bro, I don't understand the ultrasound function of your robot, the program you created didn't code the ultrasound sensor .. why do you only use a sensor for decoration?
i add this jst look purpose
Amigo gran trabajo, podrías poner las medidas aproximadas de las patas y la base de metacrilato?? Gracias y un saludo
i have upload the codes if command it does not do anything
Nice robot 🤖. 👍
Thanku
Bro can we use 9v battery?
es
@@SaptarshiSikder Thanks
nice work . thanks for sharing.
thnx
Mashallah Masha Allah
Bro what is the specifications of that battery
How much voltage and output current of each battery??
Plz reply me
4.7 volg each battery
@@SaptarshiSikder what is output current of each bro
@@vishalwaghmare2654 u can use any 12 volt battery
@@SaptarshiSikder ok that means the shield and aurdino doesn't get damage
So can I use 18650 li ion battery
@@vishalwaghmare2654 yes
sir i i try to upload your codes it comes error
install library
which library
#include
#include
String voice;
AF_DCMotor motor1 (1, MOTOR12_1KHZ);
AF_DCMotor motor2 (2, MOTOR12_1KHZ);
AF_DCMotor motor3 (3, MOTOR12_1KHZ);
AF_DCMotor motor4 (4, MOTOR12_1KHZ);
Servo myServo;
int LED1 = A0;
int LED2 = A1;
int LED3 = A2;
int BUZZER =A3;
void setup()
{
Serial.begin(9600);
pinMode(LED1, OUTPUT);
pinMode(LED2, OUTPUT);
pinMode(LED3, OUTPUT);
pinMode(BUZZER, OUTPUT);
digitalWrite(LED3, HIGH);
}
void loop()
{
while (Serial.available()){
delay(10);
char c = Serial.read();
if (c == '#') {break;}
voice += c;
}
if (voice.length() > 0){
if(voice == "*go ahead"){
forward_car();
}
else if(voice == "*go back"){
back_car();
}
else if(voice == "*turn right") {
right_car();
}
else if(voice == "*turn left") {
left_car();
}
else if(voice == "*turn on headlight") {
LED_on();
}
else if(voice == "*turn off headlight") {
LED_off();
}
else if(voice == "*horn please") {
buzzer_on();
}
else if(voice == "*stop") {
stop_car();
}
voice="";
}
}
void forward_car()
{
digitalWrite(LED3, LOW);
motor1.run(FORWARD);
motor1.setSpeed(170);
motor2.run(FORWARD);
motor2.setSpeed(170);
motor3.run(FORWARD);
motor3.setSpeed(170);
motor4.run(FORWARD);
motor4.setSpeed(170);
delay(1000);
motor1.run(RELEASE);
motor2.run(RELEASE);
motor3.run(RELEASE);
motor4.run(RELEASE);
digitalWrite(LED3, HIGH);
}
void back_car()
{
digitalWrite(LED3, LOW);
motor1.run(BACKWARD);
motor1.setSpeed(170);
motor2.run(BACKWARD);
motor2.setSpeed(170);
motor3.run(BACKWARD);
motor3.setSpeed(170);
motor4.run(BACKWARD);
motor4.setSpeed(170);
delay(1000);
motor1.run(RELEASE);
motor2.run(RELEASE);
motor3.run(RELEASE);
motor4.run(RELEASE);
digitalWrite(LED3, HIGH);
}
void right_car()
{digitalWrite(LED3, LOW);
motor1.run(FORWARD);
motor1.setSpeed(170);
motor2.run(BACKWARD);
motor2.setSpeed(170);
motor3.run(BACKWARD);
motor3.setSpeed(170);
motor4.run(FORWARD);
motor4.setSpeed(170);
delay(500);
motor1.run(RELEASE);
motor2.run(RELEASE);
motor3.run(RELEASE);
motor4.run(RELEASE);
digitalWrite(LED3, HIGH);
}
void left_car()
{ digitalWrite(LED3, LOW);
motor1.run(BACKWARD);
motor1.setSpeed(170);
motor2.run(FORWARD);
motor2.setSpeed(170);
motor3.run(FORWARD);
motor3.setSpeed(170);
motor4.run(BACKWARD);
motor4.setSpeed(170);
delay(500);
motor1.run(RELEASE);
motor2.run(RELEASE);
motor3.run(RELEASE);
motor4.run(RELEASE);
digitalWrite(LED3, HIGH);
}
void LED_on ()
{
digitalWrite(LED1, HIGH);
digitalWrite(LED2, HIGH);
}
void LED_off ()
{
digitalWrite(LED1, LOW);
digitalWrite(LED2, LOW);
}
void buzzer_on ()
{
digitalWrite(BUZZER, HIGH);
delay(800);
digitalWrite(BUZZER, LOW);
delay(100);
digitalWrite(BUZZER, HIGH);
delay(200);
digitalWrite(BUZZER, LOW);
delay(100);
digitalWrite(BUZZER, HIGH);
delay(200);
digitalWrite(BUZZER, LOW);
delay(100);
digitalWrite(BUZZER, HIGH);
delay(1200);
digitalWrite(BUZZER, LOW);
}
void stop_car ()
{
motor1.run(RELEASE);
motor2.run(RELEASE);
motor3.run(RELEASE);
motor4.run(RELEASE);
digitalWrite(LED3, HIGH);
}
is the codes correct
if i try to upload i get #include as error
library i given in link
sir ye kit aap muze de sakte ho kya
Already sold bro
extra nahi ka
mijar baherun ghetli ta mala kitit midnar
Sir wher is link and diagram
check description
i have broblem in the codes
library in description
sir aap aapaka phone no. de sakte hai kya muze aap se thodi bat karni hai
muje instagram pr sms karo
mera instagram aur facebook nahi hai whatsapp hai chalega kya
sir muze bahut argent hai please sir aap muze whatsapp pe join karona sir
Great
Thanks
Please give us the coding
wow what a robot.
Thanx
Yes
Wow say
I like
thnku
Please send
check description
100