Retro Gadgets: Nintendo R.O.B Wanted To Be Your Friend

Too busy playing video games to have a social life? No worries. In 1985, Nintendo introduced R.O.B. — otherwise known as the Robotic Operating Buddy. It was made to play Nintendo with you. In Japan, apparently, it was the Family Computer Robot. We suppose ROB isn’t a very Japanese name. The robot was in response to the video game market crash of 1983 and was meant to keep the new Nintendo Entertainment System (NES) from being classified as a video game, which would have been a death sentence at the time of its release.

Since you might not have heard of R.O.B., you can probably guess it didn’t work out very well. In fact, the whole thing tanked in two years and resulted in only two games.

Background

After video game sales tanked in 1983, many retailers decided that video games were just a fad and that the fad was over. However, toy sales remained strong, so Nintendo pivoted from its plan to produce, essentially, a home video arcade game. This led to the famous NES. However, Nintendo also had access to the Family Computer Robot and decided to package it as part of the NES system, as well.

The Robot

The robot itself, as you might imagine, was pretty simple. It couldn’t move very fast, and it had crude vision that could read certain patterns off the screen. The toy motors inside were noisy, as you can see — and hear — in the video below.

In fact, the robot’s vision was essentially the same as the “Zapper” which was the gun included with the NES. You can see both in the ad below (the NES ad is at 2:30).

Like many light pen devices, the Zapper, and thus R.O.B. only worked with a CRT-based TV. Of course, back then, that was pretty much your only option, so that was no problem at the time. If you want to know more about the scheme, you can read the patent. Reflected light and TV brightness could cause problems. The robot had a sticky filter you could put over its eyes, if needed, to cut down on a particularly bright TV.

It isn’t easy to tell from the videos, but the robot is a little over nine inches tall, and about six inches wide. It weighed less than a pound and a half. The arms could rotate through 300 degrees, stopping at five different points. It could also move the arms a little less than three inches vertically, with six different stopping points. The grippers could open to 2.75 inches.

Games

There were only two games officially produced, Gyromite and Stack-Up. The first game came with claws for the robot that could engage with the included spinning tops. The robot’s manipulation of the spinning tops allowed the on-screen player to navigate past obstacles to collect dynamite before it explodes.

The Stack-Up game had five trays and five colored disks, along with more custom claws. There were several variations of the game, but, in general, you had to make the robot stack the disks to match a pattern on the screen.

Unofficially, there was a 2014 game released by an indie developer that makes R.O.B. dance to Christmas music. Other than that, as far as we know, that’s all you can do with it unless you hack something together.

Trojan Horse

R.O.B. was really just a gimmick. It convinced stores that this wasn’t a video game, but a toy. It also excited kids. A market research firm determined that of 200 people who bought the first NES systems, a majority did so because of the robot.

But after a bit, most of the games didn’t use the robot and there were no updates to it. But it didn’t matter. Kids were happy to play Super Mario Bros, The Legend of Zelda, and other games while R.O.B. sat, unused, in the closet. R.O.B. does show up on screen in several Nintendo games. You can even unlock him as a character in Super Smash Brothers.

Teardown

As you might expect, any of these that are left today probably need some work. [Long Island Retro Gaming] has a teardown and repair video if you want to see what makes all that noise when it moves.

Farewell R.O.B

You could say R.O.B. was a failure. But, really, it was very successful. It kept the NES from being tagged as a video game and failing in the marketplace. Once the system was in your home, it didn’t matter that you didn’t use the robot. Not bad for a light gun, a few motors, and some plastic gears.

Of course, these are just begging to be hacked — not to mention begging for better motors. Or cellphone control via goggles. Or let [Joshua Vasquez] show you how to build a new one.

20 thoughts on “Retro Gadgets: Nintendo R.O.B Wanted To Be Your Friend

  1. I found ROB to be clunky and seemingly buggy, so I returned it to Nintendo for replacement. Never heard back and I’ve thought over the years that it worked as intended, just maybe got poor or sporadic signals from the TV.

  2. ROB was a really interesting approach to a toy, but I don’t think the technology was sophisticated enough for what it really should have been. Gyromite was a cool premise for a game, but imagine if ROB (via the game) could predict when you needed to move past a blocking pipe and then put the spinning top on the platform. This is conceivable, but challenging logic, especially written for an 8 bit system in 6502 Assembly.

    The other problem was the speed. ROB was SOOOOO SLOOOOWWW. It’s not ROBs fault, both the shoulder assembly and the grasping arms are driven by small DC motors with a complex arrangement of gears to provide enough torque for either of those.

    I wish ROB had been more. It was a cool prop.

  3. I very vaguely recall this when it came out and that it stacked cups or spun tops or something. My friend has one sitting on his shelf still. Just like the Uforce, PowerGlove, Power Pad, 3D gameboy and so on, this seems like another almost awesome but not quite there yet idea from Nintendo and I love it.

    1. In college I had a Powerglove (no Nintendo though). You could cut off the cable and wire it a bit different to serial or parallel I think and interface it with a normal PC. I build a demo to play tic tac toe with the glove against the computer. It was awesome. I raytraced the pieces beforehand and switched bitmaps so it looked REALLY awesome. This was on a 386 with a Tseng Et-4000 Video Card. Good days.

    1. Same except the catalogue for me was for Consumer’s Distributing, a Canadian “warehouse behind an order counter” type store (similar to Service Merchandise in the USA except without the “showroom” aspect).

  4. I still have the R.O.B. I received as a kid on a super-amazing Christmas. I’ve got a half-finished project for a display case to house him that provides control sequences via an ESP8266. There’s a great tutorial on AdaFruit, but I had some issues getting it to work on a Wemos D1 mini until I specifically timed the preamble. Here were the relevant sections of my code

    //commands
    int calibrate[] = {1, 0, 1, 0, 1, 0, 1, 1};
    int up[] = {1, 1, 1, 1, 1, 0, 1, 0};
    int up2[] = {1, 0, 1, 1, 1, 0, 1, 1};
    int down[] = {1, 0, 1, 0, 1, 1, 1, 0};
    int down2[] = {1, 1, 1, 1, 1, 0, 1, 1};
    int left[] = {1, 0, 1, 1, 1, 0, 1, 0};
    int right[] = {1, 1, 1, 0, 1, 0, 1, 0};
    int armclose[] = {1, 0, 1, 1, 1, 1, 1, 0};
    int armopen[] = {1, 1, 1, 0, 1, 1, 1, 0};
    int headLED[] = {1, 1, 1, 0, 1, 0, 1, 1};

    void flashROB(int command[]){
    //preamble directly fired, not iterated
    delay (50.1); //16.7 * 3
    digitalWrite(irLED,HIGH); //Turn LED on
    delay(1.5);
    digitalWrite(irLED,LOW); //Turn LED off
    delay(31.7); //remaining 15ms + the final 0 of 16.7ms
    //Fire off the command
    for (int i = 0; i < 8; i++){
    if (command[i]) {
    digitalWrite(irLED, HIGH); //turn on
    delay(1.5);
    digitalWrite(irLED, LOW); //turn off
    delay(15);
    }
    else {
    digitalWrite(irLED, LOW); //turn off
    delay(16.7);
    }
    }
    }

  5. You have no idea how many hours of repairs it took to get this many ROBs “working” at once. They don’t have limit switches so they use friction clutches and just run the motor a certain length of time. After 30 years they were all broken or would within minutes. In the night one you can see the TV flashes which send the movement commands. After a couple hours they move even slower as the batteries run down, so they are still doing the previous command when a new one comes in which gets missed.

    https://www.youtube.com/watch?v=9CRVd3jk0q4

    https://www.youtube.com/watch?v=mXI9CuIVKpg

Leave a Reply to craigCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.