Slashdot Mirror


Fitness Racer: PC Control of an RC Car

An anonymous reader writes "This project gives step-by-step instructions + source for connecting a cheap RC car to your parallel port and driving it around with a Dance Dance Revolution pad (or joystick). A fun way to make an old toy fun for another few hours, and another way to pretend that reading Slashdot may eventually lead to body movement."

111 comments

  1. Wifi + Webcam by aardwolf204 · · Score: 5, Interesting

    Give it WiFi and a webcam and I'm sure it would be even more fun. ;)

    --
    Im dreaming ofa big bndwdth, That can resist the /.crowd.May ur days b merry & bright & may al
    1. Re:Wifi + Webcam by BlueCodeWarrior · · Score: 0

      Agreed.

    2. Re:Wifi + Webcam by The_K4 · · Score: 1

      Supprisingly enough i did something simiular to this for a "senior design project" at college. I did add a couple of sensors and a micro-controller with some code, but it was largly the same idea. If you get the timings right you can use the serial port of the computer to simulate PWM waves (which is what most speed controls and servo motors on RC cars use for their controls) and you can acutally get analogue control working.

    3. Re:Wifi + Webcam by Anonymous Coward · · Score: 0

      I've done the webcam part before and broadcasted it to the internet. I also planned on doing something similar to the article but never got around to it.

    4. Re:Wifi + Webcam by DrEldarion · · Score: 2, Funny

      Next step: AI!

      It'll be like a Roomba, but without the useful vaccuum action.

      -- Dr. Eldarion --

    5. Re:Wifi + Webcam by dreamcatcher72 · · Score: 1

      very cool indeed.

    6. Re:Wifi + Webcam by Tege · · Score: 1

      Check this Wifi-car.

    7. Re:Wifi + Webcam by ShadowRage · · Score: 1

      dude... I had this idea a few months ago, except people online could control the mini-rc cars..

      damn... figures..

  2. Great extension... by Short+Circuit · · Score: 2, Interesting

    ...to OSS racing games. :)

  3. and yet more ways.. by joeldg · · Score: 3, Funny

    and yet more ways to waste time..

    somehow I remember time being at a premium..

    seems a long time ago now..

    time to get me an RC car..

    1. Re:and yet more ways.. by Asprin · · Score: 1


      Funny, when I look back, I seem to remember time being as ubiquitous and free as air. Now that I am (ahem) MARRIED, I don't know what to do with the 30 attoseconds of free time per day I am alotted. Why, it's almost enough to pos[**QUOTA EXCEEDED**]

      --
      "Lawyers are for sucks."
      - Doug McKenzie
  4. Server getting slow already, heres the text by aardwolf204 · · Score: 4, Informative

    This page explains how to cheaply connect a Dance Dance Revolution pad to an RC car via your PC, for literally minutes of racing enjoyment. Even more fun than the "race tracks" we played with in elementary school, where all you actually did was hold down a button and wait for your car to fall off the track.

    The general approach taken here is to use the parallel port to flip the switches in the RC controller, thereby avoiding all the radio stuff. A few transistors are required to help the 3.3V parallel port pull down some pins on the 9V RC car controller.

    Source code is included below... it actually just uses DirectInput to talk to the pad, so if you're burning to drive an RC car around with your PC joystick or keyboard, that works too. If you're using this approach, the software also tries to pulse the pins on the parallel port to give you some crude analog speed control.

    What you'll need :

    A Dance Dance Revolution pad. I recommend buying one of the soft PlayStation pads, which run about $20, and nailing it down to a big piece of plywood, as is illustrated in the image to the left. The soft pads tend to slide around and/or rip apart without support, and the hard pads are expensive.
    A cheap-ass RC car... the kind that actually has no analog steering, just four switches for forward, back, left, and right. This includes just about any car you get for $20 or less. I went with the fabulous Nikko Octane.
    A few electronic components, namely:

    # A DB-25-M connector
    # Four resistors, about 500ohms
    # Four NPN transistors
    # Wire+solder

    Total cost ~$6 at Radio Shack. I also used a breadboard to make nicer pictures, although this project is probably appropriate for the solder-in-the-air-and-cover-it-in-duct-tape-or-glu e approach.

    Connecting the hardware :

    First you'll need to open up the controller and take a look at the switches. The buttons shown here each have four terminals on them, but you only need to make one connection to each button. If you're using a different car than I am, you'll need to put a voltmeter on the terminals to find out which ones you care about. What you want is a terminal that is normally sitting at 9V relative to the battery ground, but goes to 0V when you press the button. For this particular controller, there were two terminals on each button that fit this description, and I picked one arbitrarily on each button. If you're looking at the controller as shown in the image to the left, I chose :

    # The upper-right terminal on the "forward" button
    # The lower-right terminal on the "reverse" button
    # The lower-left terminal on the "left" button
    # The upper-right terminal on the "right" button

    Solder about 8 inches of wire to each of these terminals, and about 8" of wire to the battery ground.
    Now we connect all the components, according to the schematic show on the left. The important points are :

    # Battery ground on the controller needs to get connected to ground on the parallel port
    # The emitter from each transistor goes to the common ground
    # The collector on each transistor goes to one of the terminals in the car controller
    # The base on each transistor goes through a resistor to one of the parallel port data pins

    The software expects the reverse, right, left, and forward switches to be on the parallel port's data 1, 2, 3, and 4 pins, respectively. Data 0 got left out because it was mean to the other children on the playground.

    If you left enough wire between the components and the DB-25 connector, you can plug the whole mess right into the parallel port. I like to use an extension cable so I'm less likely to knock things out of my breadboard in the heat of my excitement about driving an RC car with my feet.
    You'll also need to connect your DDR pad to your PC somehow and get it recognized as a game controller, assuming you actually want to use the

    --
    Im dreaming ofa big bndwdth, That can resist the /.crowd.May ur days b merry & bright & may al
    1. Re:Server getting slow already, heres the text by Jeff+DeMaagd · · Score: 1

      Too bad backyard hackers couldn't be bothered to learn basic microcontrollers. Using the parallel port for direct electrical I/O is contrived at best. It's not as if serial port work is hard with any good microcontroller, many of them have it built-in minus simple RS232 level conversion provided by a simple MAX232 chip. Program a few instructions to set up the chip, a few more to respond to new data, etc.

    2. Re:Server getting slow already, heres the text by Anonymous Coward · · Score: 0

      Too bad monday morning quarterbacks like yourself couldn't be bothered to even think of a project such as this. It's easy to bitch about it when you are sitting off to the side, isn't it?

      Rather than criticize someone else's work, why don't you do something of your own, such as improve upon the idea. Not as easy as sitting on your ass, sedentary as usual, eating hostess products and picking apart the efforts of others, is it?

  5. What would be even cooler... by gpinzone · · Score: 1

    would be to conenct the remote to the parallel port, instead of the car. WTG, Michael!

    1. Re:What would be even cooler... by Short+Circuit · · Score: 2, Informative

      That's exactly what he did. He used NPN transistors to simulate the pressing of the buttons on the controller.

      Granted, it's not perfect. He's going to end up with a small (~.2 to .7V) potential across the transistors, but that's not bad.

      I'd like to see an analog controlled device with proximity sensors at -45, 0 and 45 degrees forward and back.

    2. Re:What would be even cooler... by Anonymous Coward · · Score: 0

      .2 to .7 V? Just curious, where did you come up with those numbers?

    3. Re:What would be even cooler... by Theobon · · Score: 1

      A diode has a 0.7V drop. A NPN transitor in the on setting acts like a diode. The 0.2V is probably an arbitrary guess at the voltage drop across FET which can basically be used the same way.

    4. Re:What would be even cooler... by Anonymous Coward · · Score: 0

      Gaah. Just too wrong... .2V is a typical saturation voltage. The parallel port has limited drive capability and the original poster was probably assuming that the port wouldn't have sufficient output drive to put the transistor into hard saturation.

      Given that control currents in these controllers are probably in the milliamp range, and the parallel port outputting similar currents, the voltage across the transistor would probably be freakishly close to 0V.

  6. Fun for another few hours? by Anonymous Coward · · Score: 2, Funny

    driving it around with a Dance Dance Revolution pad (or joystick). A fun way to make an old toy fun for another few hours

    This is Slashdot! The first coronaries will start after about 20 minutes.

  7. or a joystick? by wankledot · · Score: 5, Funny

    OR a joystick?

    Am I the only person that thinks controlling an R/C car with a DDR pad is retarded?

    "You can drive this car with a wheel and pedals... OR you can control it using this jar of peanut butter and a hockey puck, wired to this monkey. "

    --
    My sig is blank, I typed this by hand.
    1. Re:or a joystick? by Anonymous Coward · · Score: 0

      "...OR you can control it using this jar of peanut butter and a hockey puck, wired to this monkey. "

      Please, tell me more about this.

    2. Re:or a joystick? by Lumpy · · Score: 2, Insightful

      no the retarted part is using a computer to do it.

      you are using the DDR pad's switches to tell the computer to trigger the RC car's remotes... SWITCHES!..

      Ooh boy. using a $1000.00 pc to translate switch closures to switch closures.

      whoopdie. I can do the same thing with $6.00 worth of wire,connectors, and bits.

      what's next on slashdot how to use a cray supercomputer to turn on a monitor?

      --
      Do not look at laser with remaining good eye.
    3. Re:or a joystick? by CharterTerminal · · Score: 1

      Peanut butter and hockey puck, definitely!

    4. Re:or a joystick? by Anonymous Coward · · Score: 0

      what's next on slashdot how to use a cray supercomputer to turn on a monitor?

      That's a rather uninspired analogy. A better one would be:

      What's next, an article on how to use a cray supercomputer to drive your Christmas lights?

    5. Re:or a joystick? by Anonymous Coward · · Score: 0

      I'd have to agree with you. I've seen too many overkill PC-powered projects that could be done instead with a few parts for a few dollars.

      Any other readers interested? Start your quest for knowledge here: link

    6. Re:or a joystick? by Anonymous Coward · · Score: 0

      Don't be silly, that'll never work. You'll need to get a monkey. That's the only thing that will work well with peanut butter. Or one of those penguins. You know, the ones that jump 6 foot high?

    7. Re:or a joystick? by Anonymous Coward · · Score: 0

      Actually I think I saw that article on slashdot 3 years ago.

  8. What ? by Jesrad · · Score: 2, Funny

    another way to pretend that reading Slashdot may eventually lead to body movement.

    All this scrolling and clicking and typing is a lot of movement for me already, you insensitive clod !

    --
    Maybe we deserve this world ?
  9. Fat parallel cable by 3Suns · · Score: 2, Funny
    connecting a cheap RC car to your parallel port


    Haha, I had a picture in my head of someone trying to drive round a little car with one of those awful, fat, stiff printer cables attached to the back. Silly me.
    --

    -3Suns

    ~~~~
    The Revolution will be Slashdotted
  10. A simple comparison. by UnassumingLocalGuy · · Score: 0, Troll

    Nintendo Power Pad > DDR pad. 'Nuff said.

    --
    "Hu, ho, ho-ah-oh-oh-oh. Hu, ho ho-ah-oh-oh-oh. Mario Paint! Whoaaa!"
    1. Re:A simple comparison. by EvilFrog · · Score: 1

      The Power Pad can't be used as a regular controller, so even on that merit alone a DDR Pad is superior.

  11. Slashdot leading to body movement by TWX · · Score: 1

    It's led to body movement several times recently, as people have come upon the latest SCO story and laughed so hard that they had to get up off of the floor, back into their chairs...

    That, or they've become so annoyed that they've actually gone outside to do something.

    --
    Do not look into laser with remaining eye.
  12. Well it would, but by JemalCole · · Score: 5, Funny

    . . . and another way to pretend that reading Slashdot may eventually lead to body movement.

    Well, it would if the editors would accept more of my Natalie Portman stories, it would.

  13. I like where it says.... by KJE · · Score: 1
    "Image shown for display purpose" in the picture of the kikijoy playstation-usb converter.

    What else would the image be used for again?

  14. April fool... by lanswitch · · Score: 1

    Connect joystick. Pretend to use keyboard and joystick to play game. Watch crowd go crazy when the car is going round the room.

  15. Re:Why doesn't Slashdot by ivanmarsh · · Score: 0, Offtopic

    Did you submit this story to /. ?

  16. Re:Why doesn't Slashdot by Anonymous Coward · · Score: 0

    Did you read the last few sentences? The transportation department is to blame for this one, they referred him to the FBI.

  17. This Project reminds me of by headbulb · · Score: 1

    When in highschool My friend had a car that was the perfect size to make into a remotely Controled Real Car.. I would have Rhinolined the whole vehicle. Take it out to nowhere and Had fun Just watching a real car going, without a driver. we never did it... If I find a small vehicle I may do it Then make a webpage complete with my in handcuffs (ok maybe not) But hey maybe I could get that on slashdot. It would be halarious to see people look over on the highway at car with no driver. (In which case you really would get to see me in cuffs) Oh and for those wondering about safety I would of had a backup remote for brakes. The things you would do for the hell of it.

    1. Re:This Project reminds me of by Gekko · · Score: 1

      Mythbusters did this already on Discovery Channel.

      A 67 Imapala with rockets on the top. Dang cool.

      --
      I mod down any one who says "I'm sure I will get modded down for this"
    2. Re:This Project reminds me of by NessusRed · · Score: 0

      I'm sure I'll get modded down for this but without a doubt you are the stupidest person I have ever had to the displeasure of knowing and hopefully you will leave slashdot and never ever come back again. Bye bye.

    3. Re:This Project reminds me of by Anonymous Coward · · Score: 0

      http://www.pchopper.com/mirror/RCCar_video_new.wmv .zip

      I'd like to hope I don't slashdot whoever's server that is, but that is a cool video of an example of a real R/C car being driven out in the desert. Exactly what you guys are talking about.

    4. Re:This Project reminds me of by Anonymous Coward · · Score: 0

      http://www.pchopper.com/mirror/RCCar_video_new.wmv .zipoops, there isn't a period in the link.

    5. Re:This Project reminds me of by Astrorunner · · Score: 1

      already done. Junkyard wars... two remote control cars fighting to the death.

    6. Re:This Project reminds me of by 1Oman · · Score: 1

      No seriously,been there done that.

  18. Re:Why doesn't Slashdot by jabber01 · · Score: 1

    Because there isn't a story there. This is a case of the system working as intended. No rights were violated here. There is no cause for outrage.

    --

    The REAL jabber has the user id: 13196
    What you do today will cost you a day of your life

  19. Screw RC Cars by Bendebecker · · Score: 1

    How about doing that with a REAL car?

    --
    There's a growing sense that even if The Future comes,
    most of us won't be able to afford it.
    -- Lemmy
    1. Re:Screw RC Cars by calethix · · Score: 1

      I knew I had seen this idea before. It doesn't use a DDR pad though.
      The movie linked in the article appears to be gone but maybe you can find it elsewhere.

    2. Re:Screw RC Cars by Anonymous Coward · · Score: 0
  20. That's Nothing! by speedfreak_5 · · Score: 3, Funny

    Try playing Gran Turismo 3 with Dance Dance Revolution pads. Against a drunk person, with said DDR pad.

    Fun times, fun times.

    --
    Why yes I am paranoid! Thanks for asking!
    1. Re:That's Nothing! by geoffspear · · Score: 1

      Tekken Tag is the best game to play with a DDR pad. Although it would actually be less tiring to just fight your opponent for real.

      --
      Don't blame me; I'm never given mod points.
    2. Re:That's Nothing! by Fammy2000 · · Score: 1

      Second that for Tekkan Tag. =)

      I was actually beaten by someone using a DDR pad while I used a dual shock controller. A testament to my Tekken skills.

      I couldn't keep the party around long enough to get a DDR controller vs. a DVD remote control Tekken battle.

      --
      If I had something intelligent to say, I would have said it.
    3. Re:That's Nothing! by AndyChrist · · Score: 2, Funny

      I once played Street Fighter 2 on the SNES against myself, hands vs. feet. My feet actually did pretty well.

    4. Re:That's Nothing! by Adversive · · Score: 1

      My brother used to regularly beat his friends in SNES SFII using his feet only while his opponents played with hands. He beat one friend with two perfects. :)

      --
      Adversive
      My cat's breath smells like cat food.
  21. Did this once by proj_2501 · · Score: 2, Interesting

    For one of my senior-year classes at URI, we took apart the remote to a cheap car and did a similar trick of using transistors to simulate the switch-hitting.

    We connected the transistors to the parallel port of a Motorola ColdFire eval board and wrote some software to program routes.

    It would have been useful if the damn thing had any range whatsoever, but we spent a whole nine dollars on the car, so I'm not worried.

    1. Re:Did this once by micromoog · · Score: 1
      a similar trick of using transistors to simulate the switch-hitting.

      If only the Cubs had known about this trick in time.

  22. Bug Notice- by wo1verin3 · · Score: 5, Funny

    Version Number: V1.0
    Revision Date: 10-21-2003
    Patch(es) Replaced: None
    Caveats: None
    CVE Number(s): CAN-2003-4751

    Tested Software:
    Affected Software:
    * Microsoft Windows 2000, Service Pack 2
    * Microsoft Windows 2000, Service Pack 3, Service Pack 4
    * Microsoft Windows XP Gold, Service Pack 1
    * Microsoft Windows XP 64-bit Edition
    * Microsoft Windows XP 64-bit Edition Version 2003
    * Microsoft Windows Server 2003

    Software Not Affected:
    * Microsoft Windows Millennium Edition
    * Microsoft Windows Server 2003 64-bit Edition
    * Linux - All

    Untested Software:
    * SCO - No One Uses It So We Couldn't Test

    Technical Description:
    A security vulnerability exists in the Remote Control Service that could allow arbitrary code execution on an affected system. The vulnerability results because the Messenger Service does not properly validate the length of a message before passing it to the allocated buffer.

    An attacker who successfully exploited this vulnerability could be easily drive remote controlled cars in to grandmothers or small children. This has been seen in the wild but has been limited to chasing cats.

  23. The next thing we need... by GillBates0 · · Score: 1
    is something to work that dance revolutions pad. Something like this should do the trick.

    So much for body movement.

    --
    An Indian-American Hindu committed to non-violent thought/speech/action alarmed by the global explosion of radical Islam
    1. Re:The next thing we need... by AndyChrist · · Score: 1

      Goodness me! It's Marylin Monroe!

  24. Powerful car by sharkey · · Score: 1
    connecting a cheap RC car to your parallel port and driving it around

    That must be a whopper of a car, to be able to drag a PC around with it.

    --

    --
    "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
  25. body movin' by edalytical · · Score: 1

    and another way to pretend that reading Slashdot may eventually lead to body movement

    What you mean you didn't actually do some pushups before you voted in this poll.

    --
    Win a signed Stephen Carpenter ESP Guitar from the Deftones: http://def-tag.com/?r=0008781
  26. Now add a camera... by Phat_Tony · · Score: 2, Interesting

    Now add one of those cheap cordless X-10 video cameras to the RC car, and watch the video on the computer while you drive it around using the computer controls.

    Have all your friends get these too, and set up a little race course. It'll be just like a first-person driving game, but you'll all have real little cars you're controlling.

    - Phat Tony.

    --
    Can anyone tell me how to set my sig on Slashdot?
  27. That's really not necessary by Anonymous Coward · · Score: 0

    Nobody on here is going to seriously build one .. we just want to look at the pictures

  28. Anyone... by iCoach · · Score: 1

    ...really want one of those micro racers to do this with? Or a micro tank that shoots pellets? (That gun has to be triggered by somethine, might as well be a joystick trigger)... Terrorize the office or the classroom with your laptop! -Coach

    --
    "Never upset a goalie, getting hit with a blocker is an unpleasent experience - facemask or not." -Me
  29. waste of time? by pdk · · Score: 2, Interesting

    I'm glad to see we're hitting the bottom of the barrel today on news. I built a PC controlled RC car in highschool. gee, to think I could be famous for posting photos and a webpage about it RIGHT NOW.

    --
    Paul K.
  30. Some people just shouldn't be allowed. . . by kfg · · Score: 1

    to possess a hammer and nails at the same time.

    KFG

  31. Re:Why doesn't Slashdot by ivanmarsh · · Score: 0, Troll

    How is that off topic you moding dickhead!?

    How can /. post a story if no one submits it?

  32. Toy cars are good for you. Eat more! by Anonymous Coward · · Score: 0

    while you seat around playing with toys there are children startving.
    How many children did YOU kill today?

    1. Re:Toy cars are good for you. Eat more! by Anonymous Coward · · Score: 0

      while you seat around playing with toys there are children startving.
      How many children did YOU kill today?


      So what? *My* kids aren't starving. I never had any, because I don't need another pet, and it takes too long to make them into trained servants. I've never starved a kid unless you count not paying attention to them until they're old enough to hold a conversation.
      Bitch at the parents who let their kids starve, bitch at the governments that hold food in warehouses to rot, blame profiteers who sell aid food for personal profit if you want. However, I don't accept any blame for that at all. Besides, if I couldn't afford to feed *myself*, why would I have kids? Do you believe people have a fundamental right to birth doomed children, and then try to make *me* feel guilty about it? If you can't feed the little pieces of shit, don't squeeze them out. Besides, if you don't have any food, you are better off trying to find some rather than getting laid anyhow. I've been hearing about starving children for years and years now, and the people keep having them. Sure, it's tragic, but perhaps you should be preaching for voluntary population limitation, because if it isn't done voluntarily in places where there's not enough to eat (or in populations which can't afford enough to eat), it will happen involuntarily. That's nature for you.

    2. Re:Toy cars are good for you. Eat more! by shawn(at)fsu · · Score: 1

      You know someone said the same thing to me when she saw my anti-CSS/deCSS source code T-shirt back in college. It didn't bother me then and it sure doesn't bother me now.

      I didn't kill any children today thank you. Actually I think I probably saved children today... Congress appropriated $4.696 billion for WIC in FY 2003. (That's from the WIC FAQ)

      BTW you need to use sit ! seat & starving ! startving.

      --
      500 dollar reward for tip(s) leading to the arrest of the person(s) who stole my sig.
  33. How about Counter-Strike? by supersmike · · Score: 1

    I would kill for something like this with Counter-Strike. Finally all those hours I spend could be put to exercise AND fragging. The ideal rig would make it possible to do all the basic movements- run, walk, strafe, crouch, jump, etc.

    1. Re:How about Counter-Strike? by Anonymous Coward · · Score: 0

      I remember seeing something not entirely unlike that at ECTS a few years ago. There was a guy kick boxing on this mat with these sensors on posts for arm movements. It seemed pretty good. They also had real modified M-16s that had been rigged up to be computer arcade guns via USB. An intracte combination of the two perhaps........

  34. Makes me think... by SharpFang · · Score: 1

    Remember that missions from GTA with RC cars? Humm.....

    --
    45 5F E1 04 22 CA 29 C4 93 3F 95 05 2B 79 2A B2
  35. Did this... by JMZero · · Score: 2, Informative

    Surprisingly not exciting.

    If you do plan on doing it, you'll be happy to note that the X10 cameras run a long time off of a regular 9-volt battery. You'll be unhappy to note that the viewing angle on an X10 camera is far from perfect for driving.

    Remote control plane? That's the ticket - and you can get a cheap RC plane for $60.

    --
    Let's not stir that bag of worms...
    1. Re:Did this... by Phat_Tony · · Score: 1

      Yeah, actually, I was sort of kidding, it just seemed like a funny idea. If you're all looking at your computer screens, using computer controls, it would probably be a lot cheaper, easier, and more fun to just play a computer racing game. Who cares if there are really little cars out there driving around or not? I suppose it could be more of a spectator sport that way.

      I guess it might be interesting to try if I already had the stuff around, but it wouldn't be worth the money to get it. I'd rather buy Wipeout.

      Do X-10 cameras actually have the range or frame rate to use them to pilot an RC plane?

      -Phat Tony

      --
      Can anyone tell me how to set my sig on Slashdot?
  36. Computer R/c car vs Human controlled by zymano · · Score: 1

    It would be interesting pitting a electric or gas powered R/c car controlled by a human vs a computer controlled car on one of those RC racing tracks.

  37. Design changes by JMZero · · Score: 2, Interesting

    I've found it's a lot quicker to build this kind of thing using relays for the switching. It means you don't have to do any thinking, and the switching speed is certainly fast enough for the application. I still used transistors to fire the relays - but it's still an extremely quick project.

    Using relays also means the project can be re-used with different hardware much more easily - just change what's hooked up to the relays.

    I also recommend the "UserPort" driver, which simply yields parallel port control to userland applications. Much simpler than monkeying about with special drivers.

    --
    Let's not stir that bag of worms...
    1. Re:Design changes by ChilliNuts · · Score: 1

      using relays would raise the price considerably, no?

  38. similar idea by Anonymous Coward · · Score: 1, Interesting

    I've been thinking about this for a while. With a Single Board Computer and a SV203 Board from Pontech (as listed on the palm pliot robot kit site) you could have some fun with this kind of thing. I would like to find a way of using the real RC controller to still drive it, but a Zaurus and WiFi would work good too :)
    The thought of driving it around the parkign lot, then hitting a repeat button and watching it do teh same moves on it's own would be fun...not too mention all the possibilities of cameras and "defensive" programming/hardware :)

  39. Re:Why doesn't Slashdot by Anonymous Coward · · Score: 0

    move along people
    there is nothing to see here

  40. spoken like a true novice by monofish_X · · Score: 1

    As any truly enlightened geek know, the mod IS its own reward.

  41. Re:Why doesn't Slashdot by Anonymous Coward · · Score: 0

    its OT because it has nothing to do with THIS story.

    dickhead ;)

  42. taking the idea further by fikx · · Score: 2, Funny

    I've always wanted to replace the normal RC signal with WiFi. I can picture the robot battle craze moving to a standardized battle field where the people battling sit down at a standardized terminal and control RC mechs to fight with. using WiFi, you could build your own mechs as long as they could be controlled via WiFi. the battle field just has a wireless cloud over it. 'course, there's always the cool factor of having to log into and secure your mech before battle :)

    --
    AB HOC POSSUM VIDERE DOMUM TUUM
    1. Re:taking the idea further by X-rated+Ouroboros · · Score: 2, Interesting

      Funny you should mention that.
      There are several robotics projects out there that use PDAs for processing and control functions. Just get a wireless enabled PDA.

      A friend and I have ripped apart a couple RC cars for this sort of thing. Instead of hooking the remote up to a parallel port, though, we hooked it up to a Basic Stamp. Been talking about hooking it up to a serial/parallel port just so we don't have to program in PBASIC anymore.

      Also talking about duct taping the hacked remote to the RC car and then adding various sensor inputs to the basic stamp. Oh, and the rotating knives... but that's another matter. Just your basic programmable autonomous robot for considerably less than many of the kits out there.

      --
      Simple Machines in Higher Dimensions
  43. Re:Why doesn't Slashdot by ivanmarsh · · Score: 1

    Neither did the post I replied to.
    Though my post was more relevant than it was.

  44. All this time I've been using DDR pads for DDR?? by burbs · · Score: 2, Interesting

    Though the pads are somewhat worn out, it is good to know that I have something to attempt in the near future.

    But on a more serious note... could this have real-world applications in the future for someone who didn't have arms or hands? Could this, later on down the road, evolve into a foot-controlled robot that did basic tasks for those that needed it?

  45. Re:Sig by IamGarageGuy+2 · · Score: 1

    Being a goalie - I would sure like to see more people of your opinion. It would sure save a lot of hassle with the people that you have to demonstrate this effect on.

    --
    Stay tuned for new sig...
  46. RC plane mount by JMZero · · Score: 1

    I've never tried an X10 camera on a plane - they're a little heavy (I've never bothered to disassemble one). The framerate should be fine - TV standard. The range on an X10 isn't spectacular, and degrades/chops with a moving source. Still, you'd get reasonable video if you kept the plane quite close. When I've done a plane mount, it's usually much more interesting to have a straight-down cam then a pilot cam - it would be hard to fly like this I'd think.

    In any case, it's probably best to get a smaller, more efficient camera if you're actually going to try a plane mount.

    --
    Let's not stir that bag of worms...
  47. goatse by Anonymous Coward · · Score: 0

    and another way to pretend that reading Slashdot may eventually lead to body movement.

    You mean in addition to the motion induced by reading the various posts with goatse references?

  48. well, isn't everything? (eom) by Anonymous Coward · · Score: 0

    slashdot insists that this have a body.

  49. Bigger Penis is Better betsy by t0qer · · Score: 1, Insightful

    I just randomly grabbed a subject from one of my spams figuring that it would be a good way to get attention to this comment.

    I think this article is interesting not for geek reasons, but because it represents a thumb your nose to the slashvertisement we saw yesterday on the VIA-based Mobile Robot Design For Download. Even my own comment pointed out how you could basically build your own for for just the cost of few electronics.

    Cool, slashdot is starting to tell their advertisers Kiss my ass! Way to go guys! Very admirable.

  50. Robot Wars by CityZen · · Score: 1

    and then add a pneumatic hammer or flipper and some armour, plus a bit of AI, and you'll have _real_ Robot Wars.

    1. Re:Robot Wars by Stingpl · · Score: 1

      The teacher of robotic Pastore, project your first arm manipulator in 1983. In 2001, have a first place in first war of robot in UNICAMP, public in magazine "Mecatronica Facil" january 2002 post "War of Robot". In 2001 projetc your first robot to farm in Federal School of Agriculture the Inconfidentes (city of state of Minas Gerais). In home page http://www.guerraderobosbr.cjb.net (english and portuguese) write on discussion of education robotic to people and university: How a war of robot in future? By mecatronic, because a robot is a construction of metal in 90%.

      --
      Pastore, P. L.
  51. Read his "robot tag" report by Hecatonchires · · Score: 1

    very funny

    http://techhouse.brown.edu/~neel/robot_tag.pdf

    --

    Yay me!

  52. An even better idea! by Hershmire · · Score: 2, Funny

    Instead of a DDR pad, use a wireless joypad. Then you can follow the car around!

    Wait...

    --
    if(!toilet_paper) roll.replace(new roll); //Stupid roommates.
  53. It's a Visual C++ binary with no source code? by aphor · · Score: 2, Funny

    This software will probably scrape your hard drive for email addresses and then spam them with your return address, install a DDoS slave and invoke the return of Zuul, Queen of Gozer.

    Seriously, you have to download and install the program, then *two* drivers, and tell me (wise ones) you're not nervous about this?

    --
    --- Nothing clever here: move along now...
    1. Re:It's a Visual C++ binary with no source code? by swtaarrs · · Score: 1

      If you had actually looked at the website, you'd see that the zipfile has source code in it...

    2. Re:It's a Visual C++ binary with no source code? by aphor · · Score: 1

      Sorry.

      Then again, I'm not running windows, and neither do I have Visual C++, nor do I have the libraries to link against.

      Maybe that deterred me from downloading. Should I audit the source, or has anyone else actually read the stuff?

      How difficult would a port be?

      I guess I was looking for a tarball and got hung up on the "THIS IS VISUAL C++" label on the downloads. Silly me. Thanks for checking though!

      --
      --- Nothing clever here: move along now...
  54. Our wireless RC car by Anonymous Coward · · Score: 0

    Hi all, just to show you our wireless RC car that we did at university. Just follow this link. This page is in construction, but there's the block diagram and somes pictures.

    www3.sympatico.ca/jmbouffard

    See ya

  55. Possibly by JMZero · · Score: 1

    I can get suitable relays for a buck each - so that's 5 bucks (Canadian). Not too bad - but it is an expense.

    --
    Let's not stir that bag of worms...