TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Hacking a $9 Remote Control Car with Arduino

87 pointsby achalkleyalmost 12 years ago

6 comments

pserwyloalmost 12 years ago
As somebody who is also learning electronics, I can also confirm that it is extremely satisfying to pull apart cheap RC cars and connect them to an Arduino.<p>For anybody who is interested (including the OP), there is plenty of good tutorials around. The one at [1] explains a similar process as discussed in this article, except it doesn&#x27;t rely on a test point on the circuit. Instead, it just talks directly to the relevant pins on the transmitters chip. Apparently most toy cars use the same sending&#x2F;receiving chip - the TX2&#x2F;RX2 [2]. Indeed the one I took apart had this chip, and I can confirm that it is relatively straightforward to wire up the Arduino as in [1].<p>If you search around, there are also tutorials on doing similar things to the circuit on the car itself, rather than the transmitter. My goal is to create a real-life Mario Kart setup by doing the following:<p>* Hook Arduino up to the car.<p>* Allow regular control of the car from the transmitter, but let the Arduino override these and control the car directly too.<p>* Connect IR LED and IR Receiver to Arduino on the car.<p>* Allow cars to shoot each other (there is an additional &quot;turbo&quot; input&#x2F;output on the RX2&#x2F;TX2 chips which is rarely used, so should be able to make that an auxiliary input which means &quot;fire&quot;.<p>* If the car gets shot by another, then the Arduino will brake the car for a period of time.<p>This is all coming along nicely so far, I have the Arduino&#x27;s firing at each other using IR and detecting who hit them. I also have the transmitter being controlled by an Arduino and receiving input via the serial port from my laptop, so that you drive the car from a computer. The next step is to get the Arduino to control the car directly, and then to let the Arduino and the transmitter both control the car, with the Arduino taking priority if it chooses to.<p>If anybody is interested, I&#x27;ll do a writeup when (if) it gets completed (enough).<p>[1] - <a href="http://www.instructables.com/id/Arduino-controls-cheap-RC-car-transmitter/?ALLSTEPS" rel="nofollow">http:&#x2F;&#x2F;www.instructables.com&#x2F;id&#x2F;Arduino-controls-cheap-RC-ca...</a><p>[2 (pdf)] - <a href="http://www.instructables.com/files/orig/FWW/CD13/GV525G0X/FWWCD13GV525G0X.pdf" rel="nofollow">http:&#x2F;&#x2F;www.instructables.com&#x2F;files&#x2F;orig&#x2F;FWW&#x2F;CD13&#x2F;GV525G0X&#x2F;FW...</a>
评论 #6044121 未加载
noonespecialalmost 12 years ago
Besides blinking an LED, this was my first electronics project as well. I used the parallel port of a IBM PC XT to connect to the remote and turbo pascal to program it though. Port $387, baby.<p>It was 1991, I had many pimples and little popularity, but when the car moved by computer command, i felt like Thor the thunder god. Highly recommend.
评论 #6043869 未加载
评论 #6043868 未加载
dpsalmost 12 years ago
I&#x27;m just going to shamelessly plug my project which previously featured on HN, where I did something similar and then added a camera on a smartphone to make the cheap RC car drive itself :-)<p><a href="http://blog.davidsingleton.org/nnrccar/" rel="nofollow">http:&#x2F;&#x2F;blog.davidsingleton.org&#x2F;nnrccar&#x2F;</a>
matiasbalmost 12 years ago
Great, I&#x27;m trying to do similar stuff and implement a Wi-Vi like system for tracking the car.<p>Wi-Vi: <a href="http://people.csail.mit.edu/fadel/wivi/index.html" rel="nofollow">http:&#x2F;&#x2F;people.csail.mit.edu&#x2F;fadel&#x2F;wivi&#x2F;index.html</a>
stephengilliealmost 12 years ago
I&#x27;ve got an RC car that will stop before it runs into walls. Arduinos are fun!<p><a href="http://gilgamech.blogspot.com/" rel="nofollow">http:&#x2F;&#x2F;gilgamech.blogspot.com&#x2F;</a>
评论 #6045230 未加载
joshtimonenalmost 12 years ago
Pretty cool.