I'd like to control a stepper motor using an arduino through an rc receiver/transmitter. First, is it even possible?! How Would I be able to connect it all together?
I need the stepper motor to rotate clockwise and ccw a certain amount of times per user input.
Most people use wire. They find that it conducts better than silly string.
I need the stepper motor to rotate clockwise and ccw a certain amount of times per user input.
int n = aCertainAmount;
probably won't compile.
What will the user input be? Which RC transmitter and receiver are you planning to use? Which stepper motor? Which stepper motor driver? What power supply? Do you have real requirements, or just a wish list?
I'd like to control a stepper motor using an arduino through an rc receiver/transmitter. First, is it even possible?! How Would I be able to connect it all together?
Sounds straight forward enough.
You'd need to have the RC receiver (and a power supply for it), and the Arduino (and a power supply for it), and a stepper motor driver for the Arduino (and a power supply for it).
You motor driver would need to be rated to cope with the voltage and current needed by the stepper motor.
If you use an Arduino UNO or similar, and the stepper motor is compatible with a standard motor drive shield, then this would give you a convenient solution.
The scheme would be that the transmitter sends an RF signal to the receiver, which sends a PWM servo control signal to the Arduino, which is read by a sketch you will write, which decides when/how to move the stepper and commands the motor drive shield to move it, which makes the stepper motor move. Each of these parts will need a power supply. Some of them may be able to share a common power supply, but you'd need to choose the receiver/stepper and motor driver before you know what sort of power supply they'll need.