How to Build a Robot Car

Have you ever wanted to see your own robot car roving around? Build one with a few electronics parts, an Arduino microcontroller, and copy-paste programming. Even if you've never tried a project like this before, take the chance to...

Part 1 of 4:

Building the Chassis

  1. Picture 1 of How to Build a Robot Car
    Gather materials. You'll need the following materials to build your robot car. If you're not sure what size each component should be, read over these instructions to get a feel for how they fit together.
    1. Two motors
    2. Two wheels
    3. Arduino microcontroller board (the Arduino Uno is a good choice for beginners)
    4. Motor driver shield or motor driver circuit (found in remote-controlled toy cars)
    5. Battery holder and 6 volts of batteries (e.g. four AA batteries)
    6. Chassis: a sheet of acrylic or plexiglass, about 6.5 x 4.5 inches (16.5 x 11.5cm)
  2. Picture 2 of How to Build a Robot Car
    Attach the wheels and motors to the chassis. Thread each wheel onto one of the motors. Hot glue the motor onto the chassis as follows:
    1. Mark two locations near one end of the chassis, opposite each other.
      Picture 3 of How to Build a Robot Car
    2. Glue one motor over each location, on the upper side of the chassis. Make sure the wheel hangs over the edge so it can roll along the ground.
      Picture 4 of How to Build a Robot Car
  3. Picture 5 of How to Build a Robot Car
    Glue on the battery holder. Add a dollop of hot glue to the top side of the chassis, between the wheels. Press the battery holder here and let set.
  4. Picture 6 of How to Build a Robot Car
    Attach the motor driver circuit. Position the motor driver circuit near one side of the chassis, with the wires overhanging the edge.
  5. Picture 7 of How to Build a Robot Car
    Position the Arduino. Glue the Arduino onto the chassis, tucked opposite the driver circuit. When positioning it, make sure you have access to the socket for plugging the Arduino into the computer.
Part 2 of 4:

Wiring the Car

  1. Picture 8 of How to Build a Robot Car
    Cut four lengths of wire. You'll need four pieces of insulated wire, with each end stripped. Read this section first to find out how each wire is connected, so you can cut each one to the right length. Typically, each wire should be about 5 inches (13cm) long.
  2. Picture 9 of How to Build a Robot Car
    Solder two wires onto one motor. Solder one wire onto each of the two motor pins.
    1. Read our guide on soldering electronics first if you don't have much soldering experience.
  3. Picture 10 of How to Build a Robot Car
    Solder the other ends to the motor driver. Find the motor pins on the motor driver circuit that are labeled m1 and m2. Solder the other ends of the two wires onto these pins.
    1. If your driver does not have these labels, look for a diagram of your motor driver online.
  4. Picture 11 of How to Build a Robot Car
    Repeat for the other motor. Solder the other two wires to the two pins on the second motor. Solder the other ends of these wires onto the driver pins labeled m3 and m4.
  5. Picture 12 of How to Build a Robot Car
    Connect the battery holder. The battery holder should have two attached wires, one positive (red) and one negative (black). Connect these as follows:
    1. Connect the positive wire to the Vin pin on the Arduino
    2. Connect the negative wire to the Gnd (ground) pin on the Arduino
  6. Picture 13 of How to Build a Robot Car
    Connect the motor driver circuit. The motor driver has two wires as well. Connect these to the Arduino, making contact with the wires from the battery holder:
    1. Connect the positive pin on the motor driver circuit to the Vin pin on the Arduino.
    2. Connect the Gnd pin on the motor driver circuit to the Gnd pin on the Arduino.
    3. If you have difficulty identifying the Arduino pins, find an online guide specific to your model.
Part 3 of 4:

Setting Up the Rx Circuit Control

  1. Understand the process. The hack in this section allows Arduino to drive the motors directly, without an external motor driver. The diagram shown here represents the IC (integrated circuit) on the motor driver circuit.
    Picture 14 of How to Build a Robot Car
    1. This section requires careful soldering. Work slowly and methodically.
  2. Picture 15 of How to Build a Robot Car
    Cut four wires of equal length. These will connect the Arduino and the motor driver circuit.
  3. Picture 16 of How to Build a Robot Car
    Solder the wires. Solder each wire to one pin on the integrated circuit. Take care not to make contact with a second pin. Solder as follows:
    1. Solder one wire on to the LEFT pin shown in the IC pin diagram. The LEFT pin is 7th from the top.
    2. Solder a wire on to the RIGHT pin shown in the IC pin diagram. The RIGHT pin is 6th from the top, just above "left."
    3. Solder a wire on to the BACKWARD pin shown in the IC pin diagram. The BACKWARD pin is the 10th pin, exactly opposite "left."
    4. Solder a wire on to the FORWARD pin shown in the IC pin diagram. The FORWARD pin is just above "backward," exactly opposite "right."
  4. Picture 17 of How to Build a Robot Car
    Connect the wires to the Arduino. Taking care not to confuse the wires, attach each one to the Arduino as follows:
    1. Connect the LEFT wire to pin 5 of the Arduino.
    2. Connect the RIGHT wire to pin 6.
    3. Connect the BACKWARD wire to pin 9.
    4. Connect the Forward wire to pin 10.
  5. Picture 18 of How to Build a Robot Car
    Check your wiring. Examine all your wiring closely. Make sure there are no unintentional connections causing a short.
Part 4 of 4:

Programming the Robot Car

  1. Picture 19 of How to Build a Robot Car
    Connect Arduino to a computer. Plug the Arduino circuit into your computer. Open the Arduino software. This allows you to program your car's movements.
    1. Arduino software is available for free online.
  2. Upload the following code. Type the following program into Arduino. Once finished, upload it into your circuit. This code will cause your car to move forward for 5 seconds, take a right turn, and move forward for another 5 seconds:
    int Fmotor=10;// initialize all the motors int Bmotor=9; int Rmotor=6; int Lmotor=5; void setup() { // put your setup code here, to run once: pinMode( Fmotor,OUTPUT);// set them as outputs pinMode( Bmotor,OUTPUT); pinMode( Lmotor,OUTPUT); pinMode( Rmotor,OUTPUT); } void loop() { // put your main code here, to run repeatedly: digitalWrite(Fmotor,HIGH);// code for making the car go straight digitalWrite(Lmotor,HIGH); digitalWrite(Rmotor,LOW);// NEVER SET A MOTOR HIGH ON BOTH PINS digitalWrite(Bmotor,LOW); delay(5000); digitalWrite(Rmotor,HIGH);// Take a right turn digitalWrite(Lmotor,LOW); digitalWrite(Bmotor,LOW); digitalWrite(Fmotor,HIGH); delay(800); digitalWrite(Fmotor,HIGH);// code for making the car go straight digitalWrite(Lmotor,HIGH); digitalWrite(Rmotor,LOW); digitalWrite(Bmotor,LOW); delay(5000); } 
  3. Picture 20 of How to Build a Robot Car
    Start the car. Set the car on a flat surface. Put in the batteries and watch it go! If your battery holder has a switch, flick it to turn the car on and off.
    1. You can add your own switch by connecting the positive wire of the battery holder to the center pin of an SPST (single pole singe throw) switch. Connect the other pin of the switch to the Vin pin on the Arduino.
  4. Picture 21 of How to Build a Robot Car
    Play around with the code. Change the values in the code and upload your new program to change the behavior of your car. Try changing the numbers after "delay," or see what happens when you change a LOW to a HIGH or vice versa. Just make sure never to set both pins of a single motor on HIGH at the same time.
Update 05 March 2020
Category

System

Mac OS X

Hardware

Game

Tech info

Technology

Science

Life

Application

Electric

Program

Mobile