#include "stepperLib.h"
// Define pin connections & motor's steps per revolution
const int dirPin = 15;
const int stepPin = 2;
stepperClass x ;
void setup()
{
Serial.begin(115200);
x.stepperInit(dirPin,stepPin, 360,10);
}
void loop()
{
}
#include "stepperLib.h"
// Define pin connections & motor's steps per revolution
const int dirPin = 15;
const int stepPin = 2;
stepperClass x ;
void setup()
{
Serial.begin(115200);
x.stepperInit(dirPin,stepPin, 360,10);
}
void loop()
{
}