Introduction: Internet-Controlled RC Car

About: My name is Randy and I am a Community Manager in these here parts. In a previous life I had founded and run the Instructables Design Studio (RIP) @ Autodesk's Pier 9 Technology Center. I'm also the author of t…

The Internet Controlled RC Car allows you to remotely drive around a small rc car from wherever you may be and see where it is going. This is fun because you can remote explore whatever space you leave it in, or hand over the keys - so to speak - and allow someone to drive around your space. This is also a great building block for a telepresence robot.

This project is also a great beginner project for someone who has made a few simple things and is looking to get slightly deeper into the world of microcontrollers. It starts to incorporate more advanced skills like circuit building and networking, but is not dauntingly complex.

Step 1: Materials

You will need:

(x1) RC car
(x1) Wireless camera
(x1) Arduino Uno
(x1) Ethernet Shield
(x1) Rectangular PCB
(x1) 1" round PCB
(x1) 7805 5V regulator
(x1) 10uF capacitor
(x1) 0.1uF capacitor
(x1) Power jack
(x1) Power plug
(x4) 5V SPST relays
(x1) 6" x 4" x 2" project enclosure
(x1) 7.2V rechargeable battery
(x5) AA batteries
(x1) Ethernet cable
(x1) USB cable
(x1) Assorted zip ties
(x1) Shrink tube
(x1) M3 nut, bolt and washer

(Please note that some of the links on this page contain Amazon affiliate links. This does not change the price of any of the items for sale.)

Step 2: Insert the Shield

Insert the shield's male header pins in the matching female header pins on the Arduino.

Step 3: Remove the Cover

Remove the four screws from the bottom of the RC car keeping the top plastic cover in place, and put the screws aside for later reassembly.

Remove the top cover.

Step 4: Power Conversion Circuit

Build the circuit to convert 7.2V to 5V on the 1" round PCB as specified in the schematic.

Step 5: Plug

Attach a red wire between the 5V output on the power conversion PCB and the K-type plug's center pin.

Attach a black wire between ground and the outer jack connection.

Twist the cover on the jack shut to insulate it.

Step 6: M-type Socket

Connect a black wire between ground on the round power conversion PCB to the center pin on the M-type jack.

Connect another black wire to the pinon the M-type jack to the left of center.

Connect two red wires to the pin to the right of center. Connect one of these red wires to the power input pin of the LM7805 voltage regulator.

Step 7: Connect a Battery

Cut the power connector off of the 7.2V rechargeable battery.

Solder the red wire from the battery to the unused red wire from the M-type jack.

Solder the black wire from the battery to the unsused black wire from the M-type jack.

Insulate any exposed connections with shrink tube.

Step 8: Remove the Circuit Board

Remove the screws from the remote control and open the case.

Next, remove the screw securing the circuit board in place, and cut the wires going to the battery compartment to free it from the case.

Step 9: Clean the Contacts

Use a Q-tip covered in rubbing alcohol to clean any grease that may be on the contacts for the joystick controls.

Step 10: Solder Wires

Solder wires to each of the contact pads for the remote control's joysticks.

Step 11: Relays

Solder four relays to the rectangular PCB board.

Step 12: Wire It Up

Wire the remote control board to the relay board as specified in the wiring diagram.

Step 13: Connect the Arduino

Connect the Arduino to the relay board as specified in the circuit diagram.

Step 14: Program

Setting up the wifi camera could be an Instructable unto itself, and I am not going to go over it here. That said, it comes with a pretty thorough instruction booklet for getting it configured. To get it running, just follow along with the instruction booklet that came with the camera.

What I will go over is the Arduino program.

Fortunately, there is not much to cover. The Arduino will be used to load a website at specific IP address. When you click on the links on this website, it will send HTTP requests back to the Arduino. These requests are then processed by the Arduino to trigger the relays connected to the car's remote control. When the relays are toggled high, the remote is activated and the car moves around. You can then see where it moves by loading the web interface for the IP camera in the background.

To prepare the Arduino, simply program it with the following code:

  /*********************************

  Internet Controlled RC Car    

  For more info visit:
  <a href="https://www.instructables.com/Internet-Controlled-RC-Car/"> https://www.instructables.com/Internet-Controlled-...</a>

  Code is in the public domain

  ***********************************/



  //include necessary libraries
  #include <SPI.h>
  #include <Ethernet.h>

  //mac address does not change
  byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; 
    
  //change this to your IP address
  //this can be found by running the program
  //File --> Examples --> Ethernet --> DhcpAddressPrinter
  IPAddress ip(192,168,2, 7);

  // Initialize the Ethernet server library
  // with the IP address and port you want to use 
  // (port 80 is default for HTTP):
  EthernetServer server(80); 
     
  String webClickRequest;
     
     
  void setup(){
    
     // initialize the digital pin as an output.
     pinMode(4, OUTPUT); 
     pinMode(5, OUTPUT); 
     pinMode(6, OUTPUT); 
     pinMode(7, OUTPUT); 
     
     
     // Open serial communications and wait for port to open:
     Serial.begin(9600);
     while (!Serial) {
       ; // wait for serial port to connect. Needed for Leonardo only
     }
     
     
     // start the Ethernet connection and the server:
     Ethernet.begin(mac, ip);
     server.begin();
     Serial.print("server is at ");
     Serial.println(Ethernet.localIP());
   }
   
    
    void loop(){
      // Create a client connection
      EthernetClient client = server.available();
      if (client) {
        while (client.connected()) {
          if (client.available()) {
            char c = client.read();
     
            //read the incoming HTTP request
            if (webClickRequest.length() < 100) {
     
              //store the request to a string 
              webClickRequest += c;

            }
     
            //check to see if the request has come to an end
            if (c == '\n') {
     
              //Begin drawing out the website using
              //using basic HTML formatting with some CSS
              client.println("HTTP/1.1 200 OK"); 
              client.println("Content-Type: text/html");
              client.println();
              client.println("<HTML>");
              client.println("<HEAD>");
              client.println("<TITLE>Internet Controlled RC Car</TITLE>");
              client.println("<STYLE>");
              client.println("body{margin:50px 0px; padding:0px; text-align:center;}");
              client.println("h1{text-align: center; font-family:\"Trebuchet MS\",Arial, Helvetica, sans-serif; font-size:24px;}");
              client.println("a{text-decoration:none; width:75px; height:50px; border-color:black; font-family:\"Trebuchet MS\",Arial, Helvetica, sans-serif; padding:6px; background-color:#aaaaaa; text-align:center; border-radius:10px 10px 10px; font-size:24px;}");
              client.println("a:link {color:white;}");
              client.println("a:visited {color:white;}");
              client.println("a:hover {color:red;}");
              client.println("a:active {color:white;}");
              client.println("</STYLE>");
              client.println("</HEAD>");
              client.println("<BODY>");
              client.println("<H1>Internet Controlled RC Car</H1>");
              client.println("<br />");
              client.println("<br />");        
              client.println("<a href=\"/?left\"\">LEFT</a>");
              client.println(" ");
              client.println("<a href=\"/?forward\"\">FORWARD</a>");  
              client.println(" ");      
              client.println("<a href=\"/?right\"\">RIGHT</a>");
              client.println("<br />");
              client.println("<br />");
              client.println("<br />");            
              client.println("<a href=\"/?backleft\"\">BACK LEFT</a>");
              client.println(" ");
              client.println("<a href=\"/?back\"\">BACK</a>");
              client.println(" ");  
              client.println("<a href=\"/?backright\"\">BACK RIGHT</a>");
              client.println("</BODY>");
              client.println("</HTML>");
     
              //Stop loading the website     
              delay(1);
              client.stop();
     
     
     
            //check to see if any of the drive commands have been sent
            //from the webpage to the Arduino
            
            if(webClickRequest.indexOf("?left") > 0){
              Serial.println("hello");
                  left();
                  delay(1000);
                  brake();
            }

            else if(webClickRequest.indexOf("?forward") >0){
                forward();
                delay(1000);
                brake();
            }
            
            else if(webClickRequest.indexOf("?right") >0){
                right();
                delay(1000);
                brake();
            }
            
            else if(webClickRequest.indexOf("?backleft") >0){
                left();
                reverse();
                delay(1000);
                brake();
            }
            
            else if(webClickRequest.indexOf("?back") >0){
                reverse();
                delay(1000);
                brake();
            }
            
            else if(webClickRequest.indexOf("?backright") >0){
                right();
                reverse();
                delay(1000);
                brake();
            }
            
            
            //clear the string for the new incoming data
            webClickRequest="";
     
            }
          }
        }
      }
    }

  //drive functions
  //here on down
  
  void reverse(){ 
    digitalWrite(4, LOW);
    digitalWrite(5, HIGH); 
  }

  void forward(){
    digitalWrite(4, HIGH);  
    digitalWrite(5, LOW);   
  }

  void right(){
    digitalWrite(6, HIGH);  
    digitalWrite(7, LOW);  
  }

  void left(){
    digitalWrite(6, LOW);   
    digitalWrite(7, HIGH);  
  }

  void brake(){
    digitalWrite(4, LOW);    
    digitalWrite(5, LOW);
    digitalWrite(6, LOW);   
    digitalWrite(7, LOW); 
  }

Step 15: Reattach the Antenna

Attach the antenna back to the appropriate part of the remote control board using a nut, bolt and washer.

Step 16: Drill

Drill a 1/4" hole near the corner on the front face of the project enclosure.

Drill a 3/4" hole on the side of the enclosure.

Step 17: Insert Wires

Insert an ethernet and USB cable through the 3/4" hole.

Note: If you don't have a computer to keep this powered up, you can replace the USB cable with a 9V power plug for the Arduino's m-type power jack.

Step 18: Put It Together

Plug the ethernet cable into the Ethernet Shield and the USB cable into the Arduino.

Place the Arduino and related circuitry inside of the enclosure, and pass the antenna through the 1/4" hole in the enclosure.

Finally, close the case using the lid and mounting hardware.

Step 19: Batteries and Zip Tie

Remove the battery compartment lid from the RC car and insert five AA batteries.

Weave a zip tie through the holes in the lid and fasten it shut.

Step 20: Drill

Drill a 3/8" hole through both of the plastic tabs protruding from the center-top of the RC car frame.

Step 21: Attach the Camera Stand

Pass a zip tie through the holes drilled through the tabs in the top of the case and use this to secure the camera mount in place.

Next, attach another zip tie to the one already woven through the battery compartment and use this to hold down the camera mount.

Tighten the zip ties and add additional ones as necessary to make sure that the camera mount is held securely in place.

Step 22: Remove the Mount

Remove the camera ball-socket mount (if you have not done so already).

Step 23: Drill the Car

Drill a 1/2" hole in the top of the RC car frame at the point the camera mount will pass through.

Drill 1/8" holes near each of the four corners of the back windshield.

Step 24: Attach the Battery

Using the four holes drilled in the corner of the windshield, zip tie the 7.2V rechargeable battery in place on the inside of the case.

Step 25: Mount the Jack

Drill a 1/4" hole in the car's rear bumper and mount the M-type jack using its mounting hardware.

Step 26: Pass the Plug

Pass the K-type plug through the hole in the roof of the car.

Step 27: Hot Glue

Hot glue the 5V regulator board somewhere safe and out of the way on the inside of the frame.

I found that the between the two protruding tabs on the top of the frame worked really well.

Step 28: Fasten the Lid

Fasten the lid and the car's frame back together using its mounting screws.

Step 29: Mount the Camera

Lock the camera mount back onto the camera's stand, and then fasten the camera in place.

Step 30: Turn It On

To turn on the car, hit the on switch on the underside of its frame and plug the K-type plug into the camera.

Step 31:

To use, simply load the IP address of your ethernet shield in a web browser and in another window load the IP camera.

Did you find this useful, fun, or entertaining?
Follow @madeineuphoria to see my latest projects.