Thanks for your quick response. I'm currently using these motors:
I understand the current rating is higher than the BED can give, but I have gotten these motors to work with the sample code from the SparkFun website (where I ordered the BEDs).
This is what my code currently looks like (which I got from some of the postings on this group).
#include <AccelStepper.h>
#include <MultiStepper.h>
AccelStepper leadSpool(1,9,8); //9 - STP, 8 - DIR
AccelStepper takeUpSpool(1,7,6); //7 - STP, 6 - DIR
int singleRotation = 3200; //steps defined -- 3200 is one rotation
int leadSpeed = 15000;
int takeUpSpeed = 300;
void setup() {
leadSpool.setMaxSpeed(leadSpeed);
leadSpool.moveTo(singleRotation);
leadSpool.setSpeed(500);
takeUpSpool.setMaxSpeed(takeUpSpeed);
takeUpSpool.moveTo(singleRotation);
takeUpSpool.setSpeed(200);
}
void loop() {
leadSpool.runSpeedToPosition();
takeUpSpool.runSpeedToPosition();
}