#include <Stepper.h>
Stepper MS(200, 2, 3, 4, 5);
void setup() {
// put your setup code here, to run once:
MS.setSpeed(10);
MS.step(200);
}
void loop() {
// put your main code here, to run repeatedly:
}
#include <Stepper.h>
Stepper MS(200, 2, 3, 4, 5);
void setup() {
// put your setup code here, to run once:
MS.setSpeed(10);
MS.step(200);
}
void loop() {
// put your main code here, to run repeatedly:
}