Hello,
Hello my friendsI have been working with my micro stepping 25600 per revolution and i want to rotate at 60 RPM ,SO I CALCULATE 60 RPM * 25600 SPR = 1536000 steps every minute, or 25600 steps per second (ONE REVOLUTION PER SECOND) im still using the AccelStepper.h library but need to know the speed unit for this library im already reed this page but not found clear answer http://www.airspayce.com/mikem/arduino/AccelStepper/classAccelStepper.htmlsince my code setup is stepper.setMaxSpeed(3000); stepper.setAcceleration(3000);and give me very slow speed it's give me 1 revolution per about 15 second and tried to change increase or decreed the max speed value but not working also i have reed the each pin in arduino have specific pulse value for each pin http://playground.arduino.cc/Code/PwmFrequencyhttps://www.arduino.cc/en/Tutorial/SecretsOfArduinoPWMhttp://playground.arduino.cc/Main/TimerPWMCheatsheetand the data sheet for my motor has related info with these pulse value specifications like 2.6+-20%mH/PHASE THE MAX SPEED FOR THE MOTOR IS 700/RPMIS THIS RELATED WITH CONTROLLING THE SPEED .Really i can not mange these information and need to know how i can calculate the values witch matched with my motor and do the best code may any one help me to assigned the relative speed for my motor since i want to rotate 60 rpm ? i have attached the information for my Processor

please tell me how i can appropriate calculations for the speed
also i need to combining these two steps in a simple one code form any help please
for (int x = 0; x < 2; x++)
{
s.move(25600);s.runToPosition();delay(3000);
}
for (int x = 0; x < 2; x++)
{
s.move(-25600);s.runToPosition();delay(3000);
}
Finally Thank you so much and please HELP me
Thank you