// declare your motor
AccelStepper motor = new AccelStepper(4, 1,2,3,4);
// set the target number of steps to move
motor.move(1); // this states to move one step ahead
// and then run until it gets there
motor.runToPosition();
Does that help? The step() method is wrapped by these other methods,
so you don't need to step manually. However, if you're only moving
one step at a time anyway, you might find the regular arduino Stepper
library is all you need.
Sandy Noble
--
Sandy Noble