Could someone suggest how I would go about soldering the necessary wires to a toy car transmitter so it can be connected to the pins of an Arduino Uno to allow the Arduino to control the car - forward, backwards, left, right. Could I solder wires to the pushbuttons connections? If so where?
Here is how the board of the transmitter looks.
enter image description here
enter image description here
-
\$\begingroup\$ Have you probed the circuit yet? \$\endgroup\$Ignacio Vazquez-Abrams– Ignacio Vazquez-Abrams2013年12月13日 15:41:44 +00:00Commented Dec 13, 2013 at 15:41
-
\$\begingroup\$ what's the id on the chip \$\endgroup\$Pete Kirkham– Pete Kirkham2013年12月13日 16:26:29 +00:00Commented Dec 13, 2013 at 16:26
-
\$\begingroup\$ Chip id now added in a second photo \$\endgroup\$spangeman– spangeman2013年12月13日 16:33:35 +00:00Commented Dec 13, 2013 at 16:33
1 Answer 1
First step: Check VCC level of this transmitter IC. If it is 5V then it is safe to connect power and ground of the transmitter board to power and ground of your Arduino. Just to power them together from one single power source.
Second step: most probably one terminal of each button goes to separate pins of the transmitter IC which pulls them high up to almost VCC level through some internal resistor (10-200 kOhms), while other button terminals are connected to the ground. You can check it using any voltmeter you have around. If voltage level on unpressed button is less then 0.5V lower then VCC - it is safe to connect those button terminals to your Arduino data pins and set those Arduino pins as usual digital outputs. Of course if first step was ok.
-
\$\begingroup\$ Thanks for the tips, VCC levels were fine. In case anyone else reads this I used a diode between the arduino pin and the pushbutton as discussed in the first scenario here - dduino.blogspot.co.uk/2012/02/trigger-buttons-with-arduino.html \$\endgroup\$spangeman– spangeman2013年12月14日 08:46:04 +00:00Commented Dec 14, 2013 at 8:46
-
\$\begingroup\$ Diode is ok. It makes sense to not feed current from Arduino into transmitter pins. Also it allows to power transmitter from lower voltage then Arduino (if needed). \$\endgroup\$x4mer– x4mer2013年12月14日 18:11:16 +00:00Commented Dec 14, 2013 at 18:11