Created
April 13, 2015 07:35
-
-
Save benongithub/1f08a4dfc612012611cd to your computer and use it in GitHub Desktop.
Stepper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************* | |
Motor Shield Stepper Demo | |
by Randy Sarafan | |
For more information see: | |
http://www.instructables.com/id/Arduino-Motor-Shield-Tutorial/ | |
*************************************************************/ | |
int delaylegnth = 30; | |
void setup() { | |
//establish motor direction toggle pins | |
pinMode(12, OUTPUT); //CH A -- HIGH = forwards and LOW = backwards??? | |
pinMode(13, OUTPUT); //CH B -- HIGH = forwards and LOW = backwards??? | |
//establish motor brake pins | |
pinMode(9, OUTPUT); //brake (disable) CH A | |
pinMode(8, OUTPUT); //brake (disable) CH B | |
} | |
void loop(){ | |
digitalWrite(9, LOW); //ENABLE CH A | |
digitalWrite(8, HIGH); //DISABLE CH B | |
digitalWrite(12, HIGH); //Sets direction of CH A | |
analogWrite(3, 255); //Moves CH A | |
delay(delaylegnth); | |
digitalWrite(9, HIGH); //DISABLE CH A | |
digitalWrite(8, LOW); //ENABLE CH B | |
digitalWrite(13, LOW); //Sets direction of CH B | |
analogWrite(11, 255); //Moves CH B | |
delay(delaylegnth); | |
digitalWrite(9, LOW); //ENABLE CH A | |
digitalWrite(8, HIGH); //DISABLE CH B | |
digitalWrite(12, LOW); //Sets direction of CH A | |
analogWrite(3, 255); //Moves CH A | |
delay(delaylegnth); | |
digitalWrite(9, HIGH); //DISABLE CH A | |
digitalWrite(8, LOW); //ENABLE CH B | |
digitalWrite(13, HIGH); //Sets direction of CH B | |
analogWrite(11, 255); //Moves CH B | |
delay(delaylegnth); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment