How to make DIY Arduino Bluetooth control car at Home with Arduino UNO, L298N Motor Driver, HC-05

Поделиться
HTML-код
  • Опубликовано: 2 окт 2024
  • Hello Guys in this Video Tutorial I am going to show you How to make DIY Arduino Bluetooth control car at Home with Code is Included.
    Grab the Great deals in Next PCB Mid Summer Sale:
    www.nextpcb.co...
    Subscribe It's Free / @makediy9
    Arduino Code: circuitbest.co...
    Bluetooth Control App: play.google.co...
    Note: You must detach Bluetooth Module before uploading the code to the Arduino.
    Things Needed to Make DIY Bluetooth remote control car:
    Amazon.in Links:
    Arduino UNO: amzn.to/31sEgU4
    L298N Motor Driver: amzn.to/37qwcqE
    TT Gear Motor: amzn.to/2FLFeTF
    Jumper Wire: amzn.to/2HqWHBb
    18650 Battery: amzn.to/34hsldt
    2S, 18650 Battery Holder: amzn.to/2TdA1XY
    65MM Wheels for TT Motors: amzn.to/31rrghv
    Soldering Iron: amzn.to/2HldvtF
    Glue Gun: amzn.to/3mcr51m
    HC-05 Bluetooth: amzn.to/3okmyfb
    Amazon US Links:
    Arduino UNO R3: amzn.to/2SuROJC
    TT Gear Motor: amzn.to/3nf4l29
    Wheels: amzn.to/30zkFRI
    HC-05 Bluetooth Module: amzn.to/36w2DU5
    18650 Battery Holder: amzn.to/34nOVA6
    18650 Battery: amzn.to/36EeUWu
    L298N Motor Driver: amzn.to/3cVTRQC
    L293D Motor Driver: amzn.to/3ng7Xks
    Switch: amzn.to/3ivaUdw
    Jumper Wires: amzn.to/3izMFe2
    IR Sensor: amzn.to/3iE6MIh
    Babggood Links:
    Arduino UNO R3: bit.ly/2FZY6dT
    TT Gear Motor: bit.ly/2Mlb35E
    Wheels: bit.ly/2U10QPM
    HC-05 Bluetooth Module: bit.ly/2ukQvod
    18650 Battery Holder: bit.ly/2MkPYrW
    18650 Battery: bit.ly/3eBNH7N
    L298N Motor Driver: bit.ly/3gB8Ws6
    Switch: bit.ly/3ds4Xfy
    Jumper Wires: bit.ly/2MjLy4t
    Thank you so much for watching the video. Please hit the like button it really motivates me a lot. And also don’t forget to subscribe for more amazing Arduino related content.
    Do you have any queries about the Arduino Project? Then do let me know about that in the comment section.
    Music Used in the video:
    Song: LiQWYD - Coffee (Vlog No Copyright Music)
    Music provided by Vlog No Copyright Music.
    Video Link: • LiQWYD - Coffee (Vlog ...
    Track: Outer - KV [Audio Library Release]
    Music provided by Audio Library Plus
    Watch: • Outer - KV | Free Back...
    Free Download / Stream: alplus.io/outer
    #DIYProject #ArduinoProject #BluetoothCar

Комментарии • 407

  • @MakeDIY9
    @MakeDIY9  4 года назад +32

    Hey guys I am new to RUclips I need support from you guys... Please don't forget to subscribe 😊
    Here is the code: circuitbest.com/how-to-make-bluetooth-controlled-car-using-arduino/
    Cheers!

  • @pianovision6852
    @pianovision6852 2 месяца назад +6

    If your car is not running, even after connecting by phone ,you can add ( 4700uf 25v ) capacitor to motor driver input. And connect your Bluetooth module to direct Arduino Uno's positive and negative if your phone is disconnecting always after few seconds, and also add ( 470uf 25v ) × 2 capacitors in parallel to that bluetooth module and Arduino's positive and negative, and after this all remove that jumper from the motor driver and give another same power supply to direct Arduino Uno, this all things will guaranteed solve your problem.

  • @Creativecreator
    @Creativecreator 4 года назад +10

    Nice!

  • @debrajdey5305
    @debrajdey5305 4 года назад +5

    Thank you so much!
    Atlast your code helped me to make my science project. Really great content from a new channel. I subscribed !

  • @vijaydalvi5825
    @vijaydalvi5825 4 года назад +9

    And i an going to use it fir my science project

    • @MakeDIY9
      @MakeDIY9  4 года назад +1

      You are welcome 😊

  • @jyotsnapatil6919
    @jyotsnapatil6919 2 месяца назад +3

    Can we use normal dc motor instead of bo gear motor?

  • @mayanksah4518
    @mayanksah4518 3 дня назад +2

    #define in1 5 //L298n Motor Driver pins.
    #define in2 6
    #define in3 10
    #define in4 11
    #define LED 13
    int command; // Int to store app command state.
    int Speed = 204; // 0 - 255.
    int Speedsec;
    int Turnradius = 0; // Set the radius of a turn, 0 - 255.
    int brakeTime = 45;
    int brkonoff = 1; // 1 for the electronic braking system, 0 for normal.
    void setup() {
    pinMode(in1, OUTPUT);
    pinMode(in2, OUTPUT);
    pinMode(in3, OUTPUT);
    pinMode(in4, OUTPUT);
    pinMode(LED, OUTPUT); // Set the LED pin.
    Serial.begin(9600); // Set the baud rate to your Bluetooth module.
    }
    void loop() {
    if (Serial.available() > 0) {
    command = Serial.read();
    Stop(); // Initialize with motors stopped.
    switch (command) {
    case 'F': forward(); break;
    case 'B': back(); break;
    case 'L': left(); break;
    case 'R': right(); break;
    case 'G': forwardleft(); break;
    case 'I': forwardright(); break;
    case 'H': backleft(); break;
    case 'J': backright(); break;
    case '0': Speed = 100; break;
    case '1': Speed = 140; break;
    case '2': Speed = 153; break;
    case '3': Speed = 165; break;
    case '4': Speed = 178; break;
    case '5': Speed = 191; break;
    case '6': Speed = 204; break;
    case '7': Speed = 216; break;
    case '8': Speed = 229; break;
    case '9': Speed = 242; break;
    case 'q': Speed = 255; break;
    case 'S': brakeOn(); break; // Electronic braking command
    }
    Speedsec = Turnradius;
    if (brkonoff == 1) {
    brakeOn();
    } else {
    brakeOff();
    }
    }
    }
    void forward() {
    analogWrite(in1, Speed); // Set PWM signal to in1
    digitalWrite(in2, LOW); // Ensure in2 is LOW
    analogWrite(in3, Speed); // Set PWM signal to in3
    digitalWrite(in4, LOW); // Ensure in4 is LOW
    }
    void back() {
    analogWrite(in2, Speed); // Set PWM signal to in2
    digitalWrite(in1, LOW); // Ensure in1 is LOW
    analogWrite(in4, Speed); // Set PWM signal to in4
    digitalWrite(in3, LOW); // Ensure in3 is LOW
    }
    void left() {
    analogWrite(in3, Speed); // Set PWM signal to in3
    digitalWrite(in4, LOW); // Ensure in4 is LOW
    analogWrite(in2, Speed); // Set PWM signal to in2
    digitalWrite(in1, LOW); // Ensure in1 is LOW
    }
    void right() {
    analogWrite(in4, Speed); // Set PWM signal to in4
    digitalWrite(in3, LOW); // Ensure in3 is LOW
    analogWrite(in1, Speed); // Set PWM signal to in1
    digitalWrite(in2, LOW); // Ensure in2 is LOW
    }
    void forwardleft() {
    analogWrite(in1, Speedsec); // Set reduced PWM for left turn
    digitalWrite(in2, LOW);
    analogWrite(in3, Speed); // Full PWM for forward motion
    digitalWrite(in4, LOW);
    }
    void forwardright() {
    analogWrite(in1, Speed); // Full PWM for forward motion
    digitalWrite(in2, LOW);
    analogWrite(in3, Speedsec); // Set reduced PWM for right turn
    digitalWrite(in4, LOW);
    }
    void backright() {
    analogWrite(in2, Speed); // Full speed back
    digitalWrite(in1, LOW);
    analogWrite(in4, Speedsec); // Reduced speed for right turn
    digitalWrite(in3, LOW);
    }
    void backleft() {
    analogWrite(in2, Speedsec); // Reduced speed for left turn
    digitalWrite(in1, LOW);
    analogWrite(in4, Speed); // Full speed back
    digitalWrite(in3, LOW);
    }
    void Stop() {
    analogWrite(in1, 0);
    analogWrite(in2, 0);
    analogWrite(in3, 0);
    analogWrite(in4, 0);
    }
    void brakeOn() {
    digitalWrite(in1, HIGH);
    digitalWrite(in2, HIGH);
    digitalWrite(in3, HIGH);
    digitalWrite(in4, HIGH);
    delay(brakeTime);
    Stop();
    }
    void brakeOff() {
    Stop(); // Regular stop without braking
    }
    Guys this is the correct code

  • @SohamJain-v6h
    @SohamJain-v6h 7 месяцев назад +1

    Thank you sir. I got A+ in my school project.

  • @Kady3DPrinting
    @Kady3DPrinting 3 года назад

    Very good, i have built one on my channel also

  • @yasirmateen8217
    @yasirmateen8217 11 месяцев назад +2

    brother I have done all the same instruction given in video but my car didn't work what should I do please help me

  • @pianovision6852
    @pianovision6852 2 месяца назад

    If your car is not running, even after connecting by phone ,you can add ( 4700uf 25v ) capacitor to motor driver input. And connect your Bluetooth module to direct Arduino Uno's positive and negative if your phone is disconnecting always after few seconds, and also add ( 470uf 25v ) × 2 capacitors in parallel to that bluetooth module and Arduino's positive and negative, and after this all remove that jumper from the motor driver and give another same power supply to direct Arduino Uno, this all things will guaranteed solve your problem.

  • @vijaydalvi5825
    @vijaydalvi5825 4 года назад +2

    And i like that you had given the solution for motor problem

    • @stinniso3548
      @stinniso3548 3 года назад

      Where i can find the soulution?

  • @superearn1412
    @superearn1412 2 года назад +1

    all is set but when connected to my phone after some seconds it shows device connection was lost ...Sir can you help me with this ..BTW your video was amazing and super cool..

  • @K98B67
    @K98B67 7 месяцев назад +6

    bro code is not working

  • @developer_001
    @developer_001 Год назад +4

    Hii I uploaded the same code and joined the circuits as you mentioned but in my phone it doesn't show the Bluetooth name.

  • @KeertirajNayak-e6e
    @KeertirajNayak-e6e 22 дня назад

    Sir the code is uploaded but car is not responding ,what should I do sir my project is day after tom . Iam trusting u sir so that u can reply and help me please 😢😢

  • @kutty-project
    @kutty-project Месяц назад +1

    Bro I am very happy the program will be success I will use many more program not work your program is working very very thanks bro I will share the link my friend my friend also say thank you😊😊😊🎉🎉❤❤❤❤❤❤❤❤

    • @MakeDIY9
      @MakeDIY9  Месяц назад

      You are welcome 🙏
      If you need any electronics components then you can directly order from me +91 93329 12239

  • @oktaganendra3413
    @oktaganendra3413 25 дней назад

    Bro why when I pressed the car forward he went forward when I didn't press that forward button anymore

  • @dhyeyvekariya337
    @dhyeyvekariya337 3 года назад +1

    is this code working please reply

  • @mohansaran1982
    @mohansaran1982 10 месяцев назад

    Thanks bro, mine is working fine. Love u sooooo much ❤❤❤❤❤❤❤❤

  • @BeratArda-bp6dh
    @BeratArda-bp6dh 3 месяца назад

    Where is the power supplied to the Arduino Uno board? Can anyone who knows answer please?

  • @annamkesava3494
    @annamkesava3494 Год назад +1

    Bro Can We Connect IR Receiver instead of Bluetooth Sensor?
    Does it work?

    • @AzzemChouayb
      @AzzemChouayb Год назад

      you can do it if you want a rc car that automatically evades obstacles but the code won't be the same

  • @vishnumaxz0763
    @vishnumaxz0763 Год назад +1

    How to connect switch with battery holder please tell 😭

  • @japneetsingh4121
    @japneetsingh4121 3 месяца назад

    Bro I have done everything but the car is not working. Do you have any idea

  • @ghanshyamsolanki7668
    @ghanshyamsolanki7668 Год назад +1

    Sir all Connection are creat but not working and motor not run

  • @АлександрИванов-й8ы9г
    @АлександрИванов-й8ы9г 2 месяца назад

    Please give me the cod. Im ftom Russia it doesnt work for me

  • @adebolaadekemi2054
    @adebolaadekemi2054 2 года назад +1

    Bruh I literally didn't understand anything

  • @kaushik5165
    @kaushik5165 3 года назад +8

    Best robotics channel on RUclips , keep it up bro u will be famous one day

    • @MakeDIY9
      @MakeDIY9  3 года назад +3

      Thank you BTW this is my 2nd channel for ardiono Enthusiastic people.
      I find every other creator in this market is not upto the mark.
      So, this is my responsibility to help others.
      BTW my 1st channel has over 150k Subs 🐱

  • @UrichsHub
    @UrichsHub 8 месяцев назад

    The code is working but the app is not found in the Play Store send the the correct link

  • @user-jg1wb1ix9v
    @user-jg1wb1ix9v 2 года назад +1

    Can any 1 plz tell that is it really going 2 work

  • @vijaydalvi5825
    @vijaydalvi5825 4 года назад +1

    But don't be sad your vidio was breleant and right for me.

  • @ahadshaikh4624
    @ahadshaikh4624 Год назад +1

    To control the speed we need pwm signal right ?? But here it was not used plz explain how it is possible to control speed without pwm

  • @electricalcoder3025
    @electricalcoder3025 4 года назад +1

    COOL & pretty awesome job MAKE DIY I will suppourt you as much as possible for me beacause we have
    similar passion and channel contents thats arduino and programming and i subscribed your too....anyways all the very best buddy

  • @stephanvishal2609
    @stephanvishal2609 3 года назад +2

    In my hc 05 I have +5 votls pins instead of vacc pin. What should I do? Car is connected to my phone but it's not moving.

    • @edmismine
      @edmismine Год назад +1

      yes same here
      please tell me how to solve this problem

    • @MechHEX-qg9ce
      @MechHEX-qg9ce Месяц назад

      vcc i9s 5v pin and pair the HC-05 in bluetoth in your system and then pair it

  • @adityachari3932
    @adityachari3932 3 года назад +1

    Left 2 motors r running slower than right two motors....I tried changing wire also it did not work. Pls help

    • @MakeDIY9
      @MakeDIY9  3 года назад +1

      Motors may be different rpm

    • @adityachari3932
      @adityachari3932 3 года назад

      @@MakeDIY9 Yes I changed it and it worked. I also added an ultrasonic sensor so that it stops and goes back when it encounters an obstacle

  • @electoreal1749
    @electoreal1749 3 года назад +1

    I want to make it with obstacle avoiding with ultrasonic sensor with mobile control...plzz make video on it.

  • @aswinrajb.v8200
    @aswinrajb.v8200 4 года назад +1

    Bro!!! I have a problem!!! My car isn't moving!!! I did everything from your video but whenever I press forward or any other directions it's not even moving🤷🏽‍♂️ plzz help me bro!!!

    • @MakeDIY9
      @MakeDIY9  4 года назад +1

      Check Battery bro most likely it is not charged .

    • @aswinrajb.v8200
      @aswinrajb.v8200 4 года назад

      @@MakeDIY9 🙏🏻☺️

    • @MakeDIY9
      @MakeDIY9  4 года назад

      Does it worked? 🙂

    • @aswinrajb.v8200
      @aswinrajb.v8200 4 года назад

      @@MakeDIY9 tnx a lot bro!!! It worked🥰

    • @aswinrajb.v8200
      @aswinrajb.v8200 4 года назад

      TQ for responding quickly!!!🙏🏻😊

  • @EnlightenedSage712
    @EnlightenedSage712 3 года назад +1

    I need your help

  • @gamersyt2661
    @gamersyt2661 3 года назад +8

    This channel is my go to channel for my school science exhibition projects.
    You will have 1M soon 😁

    • @MakeDIY9
      @MakeDIY9  3 года назад +1

      Thank you so much 😀

  • @Arihant-xo5wj
    @Arihant-xo5wj 2 месяца назад

    pls be vegan animals also have lifes Radhe Radhe

  • @fatimaezzahraeelomari3965
    @fatimaezzahraeelomari3965 Месяц назад

    I wanna do this project badly, but im tryna customize my app based on my creterias, so im wondering how could i create an app of my own for arduino bluetooth control with an HC-05. TY!

  • @heytanix
    @heytanix 4 месяца назад

    Bro I used same code, same app too... But I am using 12V motors and yes I have 12V Batteries also, but it's not working

  • @39.ritraroy15
    @39.ritraroy15 2 месяца назад

    can i upload it from any remote control app?

  • @akashshaji2888
    @akashshaji2888 3 года назад +2

    Bro can we use 9 v battery in this

  • @YRGshiestyy
    @YRGshiestyy 6 месяцев назад

    has anyone found the app or an app that works?

  • @monalisashorts
    @monalisashorts 3 года назад +1

    Bro please help me... I have uploaded the code successfully and also connect with the Android app... But car is not moving... Please help me

  • @vijaydalvi5825
    @vijaydalvi5825 4 года назад

    I coming future if i want to a new project i definitely use your videos

  • @stinniso3548
    @stinniso3548 3 года назад +3

    Can someone please help me..?!
    My motors does not turn bit when i give them direct power there functionated

  • @genesisunreachable3206
    @genesisunreachable3206 3 года назад

    Demonios Gump tu coeficiente intelectual ha de ser de 160, eres realmente un genio.

  • @anilguptaPhysioanil
    @anilguptaPhysioanil 3 года назад

    Plz... Help my arduino Bluetooth car not working
    Main apkai is vedio Sare diagram ache set kiya fir bi...

  • @drbinishebad486
    @drbinishebad486 8 месяцев назад

    please use 1 microbit '🙏

  • @mayankchetanjumnake3949
    @mayankchetanjumnake3949 2 года назад

    Hey I am really noob at Arduino don't even know anything can please tell me how to remove something stuff of bluetooth module while uploading code

  • @adazahfx4990
    @adazahfx4990 2 года назад +1

    what wires did u use??

  • @dhanushr3352
    @dhanushr3352 4 года назад

    superbbbb brooo ur really amazing and fantastic

    • @MakeDIY9
      @MakeDIY9  4 года назад

      Thank you for your support 🙂

  • @SahilJaiswal-iw3je
    @SahilJaiswal-iw3je 5 месяцев назад

    Yes It is not working, why?

  • @45642
    @45642 8 месяцев назад

    I am doing this. Model but remote is nnot. work Properly ..plls. C codes

  • @kushagraarora6412
    @kushagraarora6412 Год назад +1

    will 9v battery work?

  • @reaperhcr2
    @reaperhcr2 Год назад

    Bro please Help me , I did every step same as you but my car is not moving not even one motor

  • @divcreator8998
    @divcreator8998 3 года назад

    stk500v2_ReceiveMessage(): how to fix this? i use arduino mega thank for response

  • @EnlightenedSage712
    @EnlightenedSage712 3 года назад +1

    Hi bro

  • @gamersyt2661
    @gamersyt2661 3 года назад +22

    Got A+ grade in my School by this project
    Everything is so precise.
    Thank you so much!

  • @namangarg6959
    @namangarg6959 Год назад

    Hi sir I am making a car video which i will upload in my channel so can I use your code link in my discription by giving you credit without any issues please sir

  • @kavimalminindu4951
    @kavimalminindu4951 3 года назад +1

    can we use HC 06 bluetooth module for this

  • @stdfgaming5340
    @stdfgaming5340 Год назад

    thank you so much sir

  • @studynepalexperiment5746
    @studynepalexperiment5746 3 года назад

    Sir my tyres get continuously moves forward,,after some here and there(after a while) what to do

  • @jedidiahanarfi
    @jedidiahanarfi Год назад

    I am having a problem understanding the connection of the motors. Could you please explain it?

  • @HeatDemon-yb1zo
    @HeatDemon-yb1zo 2 месяца назад

    I need help

  • @saimasadi9107
    @saimasadi9107 2 года назад

    Hello I also make this project light of arduino and motor driver is on but it is not showing on phone so that's why I can't control it please help me

  • @HeatDemon-yb1zo
    @HeatDemon-yb1zo 2 месяца назад

    Help plese

  • @salomitelore3791
    @salomitelore3791 7 месяцев назад

    I m not able to connect the Arduino Uno and not able to put the use its asking for the drivers

  • @beastxviper3662
    @beastxviper3662 Год назад

    Sir I made this car in my school's ATL , but the rear wheels are not working , speed is very slow, what to do?

  • @HeatDemon-yb1zo
    @HeatDemon-yb1zo 2 месяца назад

    Hi

  • @atchau5959
    @atchau5959 2 года назад

    I can't use it, even if I copy the code or do the exact same thing as you , cant you help me

  • @mr.nayeem943
    @mr.nayeem943 3 года назад

    Hey there. I followed every steps that you did but it doesnt work.The motors doesn't work. Can you provide help?

  • @killiyaswanthkumar9429
    @killiyaswanthkumar9429 Месяц назад

    Can anyone reply why does the motor uses that gear system

    • @MakeDIY9
      @MakeDIY9  Месяц назад

      To increase the motor torque and reduce the speed

  • @laggygamer4
    @laggygamer4 Год назад

    brother code is not working
    i am using it for a mars rover but its not working

  • @electroexplosion
    @electroexplosion 3 года назад +1

    can you plz help my car is not moving and the hco5 module is blinking very dim i can't even see the light i checked the hc 05 is working or not it's perfect

    • @MakeDIY9
      @MakeDIY9  3 года назад

      check battery bro

    • @electroexplosion
      @electroexplosion 3 года назад

      The battery is fully charged and it has 8.7v but I can directly power up the hc 05 using the ground and 5v pins of the motor driver I just lost around ₹1500 trying to make this

    • @MechHEX-qg9ce
      @MechHEX-qg9ce Месяц назад

      @@electroexplosion it may be in another mode,off the module and press the button and power on it

  • @muskanbaloch6455
    @muskanbaloch6455 2 года назад

    I am making it all fine but when i turn on the power button it didn't get any power why ?

  • @shreeshamusicstudio5331
    @shreeshamusicstudio5331 2 года назад

    Pls help me

  • @adarshsol.9591
    @adarshsol.9591 4 года назад +1

    Best Project 👍👌👌👌
    Keep creating best content.....
    We are having same passion of arduino, iot, Rpi and programming....
    Any way dude best regards

  • @beginnersplay947
    @beginnersplay947 Месяц назад

    How do you charge those battery please tell me 😭😭

  • @Night_Peaxe
    @Night_Peaxe Год назад +2

    Thanks a lot bro!! Now i can complete my Project in school, I invested about 1300 rs till now and now i can complete it Thanks a Lot!

  • @DIYInventor
    @DIYInventor 2 года назад

    How many battery and how much MAH does L293d requires to run 4 Motor pls aswer

  • @rajpratapsingh8044
    @rajpratapsingh8044 3 года назад

    My bluetooth module is discoverable but can't be connected , help me

  • @BeratArda-bp6dh
    @BeratArda-bp6dh 3 месяца назад

    Where is the power supplied to the Arduino Uno board? Can anyone who knows answer please?

  • @BeratArda-bp6dh
    @BeratArda-bp6dh 3 месяца назад

    Where is the power supplied to the Arduino Uno board? Can anyone who knows answer please?

  • @swapnilsamadder2376
    @swapnilsamadder2376 Год назад

    I am telling that from your code link how to upload them

  • @vijaydalvi5825
    @vijaydalvi5825 4 года назад

    I am sorry dye make because I am a student and i am nit permitted by my parents

  • @moviesguru1885
    @moviesguru1885 2 года назад

    bro i have do all thing but after that the car is not running bro please help

  • @birupakhyamishra5078
    @birupakhyamishra5078 3 года назад

    How to do code and connection in arduino nano this project please send bhai

  • @MultiTechChauhan
    @MultiTechChauhan 3 года назад

    which software using for mixing reply

  • @divadoge5584
    @divadoge5584 3 года назад +1

    Can use accelerometer control?

  • @omkargamingog6146
    @omkargamingog6146 3 года назад

    RIDEL UNO R3 Arduino Compatible Atmega328p Board with Free USB Cable | SMD can I use this arduino board

  • @manasagadamsetty9206
    @manasagadamsetty9206 6 месяцев назад

    can we get circuit design image?
    and we can stimulate ?

  • @venkateswararaopamula3801
    @venkateswararaopamula3801 3 года назад +1

    Can we use normal motors

  • @ajeetkumarnishad1316
    @ajeetkumarnishad1316 4 года назад

    To get semple and bater easy project we can make for you

  • @user-viju1433ASH
    @user-viju1433ASH 3 года назад

    Hi sir Can we do with 2 motors instead of 4 motors pls help me i have only 2 motors give me reply sir

  • @zephaniahqamer
    @zephaniahqamer Год назад

    hey I didn't quite get how the batteries are being charged, can you please explain?

  • @firexboi
    @firexboi 3 года назад

    can you help me in the code it is having problems

  • @krushnamuduli7237
    @krushnamuduli7237 2 года назад

    How to charge lithium battery 12 volt