Introducing PETBOT: A node.js Telepresence Robot using arduino

It’s a telepresence robot I built for our office, consisting of an iPad mounted on a lightweight chassis powered by an RC car. To operate it, you open up a video chat session with the iPad, then control the robot from your browser using the web interface.

PETBOT can see, move, talk, and, like any startup employee, play foosball. Or at least try to.

The car is controlled by a radio transmitter wired to a Raspberry Pi running a local node.js server. Commands are sent via socket.io through a web UI & second node.js server hosted remotely on Heroku. The local server connects to the remote server as a socket.io client, thus allowing commands to be sent to the Pi from anywhere in the world with very low latency.

Introducing PETBOT A node.js Telepresence Robot

I originally made the circuit and local server for Arduino, but without an expensive wifi shield, PETBOT’s range was limited to the range of the radio transmitter. To remedy this, I wired it up to my wifi-enabled Raspberry Pi instead. Most of the time, the Pi stays plugged into the wall and powers the transmitter from there, but if we want to send PETBOT further away (say, to other floors in the building), we can mount the Pi and transmitter directly on PETBOT and run it off battery power.

The Idea

Here at AppNeta, we have engineering teams in Boston, Providence, and Vancouver, plus remote employees in various locations. Although we’re big on asynchronous communication (via HipChat, Github, etc.), chatting face to face is still important, so we do a lot of videoconferencing. In our Boston office, we share a persistent VSee window with Providence.

Recently our team acquired a couple of iPads. We joked about making our own telepresence robot: duct taping an iPad to a Segway or a Roomba. But while sitting in a meeting one afternoon, it occurred to me that this really wouldn’t be so hard to make. A remote control car could probably be controlled from an Arduino or Raspberry Pi, and it couldn’t be too hard to control the board over the web.

A few weeks ago I stopped into Radio Shack and that’s when I spotted it. The Desert Blaster. A large, sturdy RC car, marked down from $80 to $11. It was a sign. I HAD to build it.

The Circuit

I brought the Desert Blaster home and immediately began dismantling it. Once I got to the board inside the remote I discovered the car’s signals were controlled by sliding switches:

I soldered leads to the connections, then routed them through transistors to translate the action of the sliding switches to the I/O ports of the Arduino or Pi.

Introducing PETBOT A node.js Telepresence Robot

Originally I set up the circuit with the Arduino in mind, but it works just as well with the Raspberry Pi’s GPIO pins. Here’s a schematic:

Remotes probably vary for different RC car models, so this may not work for everyone, but it was easy enough to figure out with my trusty multimeter!

The Application

Before going through the trouble of building a case for the car, I wanted to make sure that I could control it over the web with latency comparable to a video chat program. Socket.io on node.js seemed like a good starting point, due to its ease in passing messages between browsers and servers. For the Arduino, I used duino to facilitate PC-to-Arduino communication; for the Pi, i used pi-gpio.

 

 

For more detail: Introducing PETBOT: A node.js Telepresence Robot


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top