Skip to content

Instantly share code, notes, and snippets.

@peow2373
Created April 15, 2020 05:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peow2373/abd79f3cbed952046d6ef06f6318be2b to your computer and use it in GitHub Desktop.
Save peow2373/abd79f3cbed952046d6ef06f6318be2b to your computer and use it in GitHub Desktop.
Makes a stepper motor rotate one revolution at a time, before pausing, and then rotating again
#include <Stepper.h>
const int stepsPerRevolution = 64; // change this to fit the number of steps per revolution
// 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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment