Skip to content

Instantly share code, notes, and snippets.

@kmicheli
Created April 12, 2018 04:35
Show Gist options
  • Save kmicheli/4aad12878112b8fc316d4548c3520ac3 to your computer and use it in GitHub Desktop.
Save kmicheli/4aad12878112b8fc316d4548c3520ac3 to your computer and use it in GitHub Desktop.
#include <Stepper.h>
const int stepsPerRevolution = 48; // the number of steps per revolution for the motor
// initialize the stepper library on pins 8 through 11:
Stepper myStepper(stepsPerRevolution, 8, 9, 10, 11);
void setup() {
// set the speed at 60 rpm:
myStepper.setSpeed(60);
// initialize the serial port:
Serial.begin(9600);
}
void loop() {
// step one revolution in one direction:
Serial.println("clockwise");
myStepper.step(stepsPerRevolution);
delay(500);
// step one revolution in the other direction:
Serial.println("counterclockwise");
myStepper.step(-stepsPerRevolution);
delay(500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment