Hi everyone! I'm looking to program a servo on my rc to run the other direction while in tandem with the steering servo to run the steering wheel in the correct direction.
I'm thinking I should be able to splice the signal cable through a nano board to change the direction but I'm unsure how to code.
I'd like to be able to control the EPA as well but if that's easier said than done I'll at least settle to have the correct direction.
I am aware of ways of doing this by modding the servo itself but it doesn't appear feasible on the tiny ones I'm using.
What servos? Tiny isn't really enough specification. Are you talking about a continuous rotation servo or a real positional servo? Also what is "the EPA"?
Then you need to write (or find) some. The process is approximately
Read in the existing servo signal - pulseIn() is the command you'll need.
Write the value you've read to one servo using writeMicroseconds().
Write (2400 - that value) to the other servo.
There are many examples available of reading a value from an RC receiver channel and sending it on to one or more servos with or without modifications. A search on "arduino RC receiver servo"willfind loads of them. No fiddling about with wiring. Both servos are wired exactly as normal.