this is the code im am using:
/*
* MotorKnob
*
* A stepper motor follows the turns of a potentiometer
* (or other sensor) on analog input 0.
*
*
http://www.arduino.cc/en/Reference/Stepper */
#include <Stepper.h>
// change this to the number of steps on your motor
#define STEPS 100
// create an instance of the stepper class, specifying
// the number of steps of the motor and the pins it's
// attached to
Stepper stepper(STEPS, 8, 9, 10, 11);
// the previous reading from the analog input
int previous = 0;
void setup()
{
// set the speed of the motor to 30 RPMs
stepper.setSpeed(30);
}
void loop()
{
// get the sensor value
int val = analogRead(0);
// move a number of steps equal to the change in the
// sensor reading
stepper.step(val - previous);
// remember the previous value of the sensor
previous = val;
}
when using this code it will rotate but it rotates even when your not touching the pot and it will randomly change direction on its own.it will sometimes shudder backwards and forwards.If you rotate the pot it may sometimes change direction heading in the opposite direction but if you wind the pot from one end to the other you can hear the motor change the tone as well
thanks for that information cr0sh the motor is opperatinga spring loaded device so when power is lost it should return back to the same position as started but trail and error will prove that fact lol
thanks Joe