Society of Robots - Robot Forum

Electronics => Electronics => Topic started by: Robogeek3000 on January 01, 2013, 03:16:42 PM

Title: Is using Transmitter & Reciever from a RC car with Arduino Uno possible?
Post by: Robogeek3000 on January 01, 2013, 03:16:42 PM
     Objective: To make a simple remote controlled omni-wheel robot.

     Specs desired (for RC): At least 1 channel

Can I rip a receiver out of a working remote controlled car and use it with an Arduino board?

     
Title: Re: Is using Transmitter & Reciever from a RC car with Arduino Uno possible?
Post by: jwatte on January 01, 2013, 09:15:13 PM
If the receiver uses "standard" servo PWM control, then yes, you can do that. You will then have to write code to detect the duty cycle of the PWM that comes out of the receiver, and use that data on the Arduino. Using the pin-change interrupt and a microsecond-resolution timestamp ought to make that reasonably simple.
Title: Re: Is using Transmitter & Reciever from a RC car with Arduino Uno possible?
Post by: studyembedded on January 07, 2013, 05:49:35 PM
Yes you can do it. I appreciate jwatte's efforts, thanks guys!