hello,
i've found a few posts on the subject, but none of them had a solution, so i'm trying again (i swear i'll post the solution, if i find it
problem:
we've wired up the motor, run some standard example code. though the stepper doesn't rotate - it just kind of vibrates, and seems as its attempting to move, but somehow stuck? it also got quite warm/hot.
picture:
setup:
stepper motor (SM-42BYG011-25)
arduino uno
easy driver 4.4
code i found in an example
//Following is the code:
#define DIR_PIN 2Â Â Â //STEPPER PIN
#define STEP_PIN 3Â Â Â //STEPPER PIN
void setup() {
 pinMode(DIR_PIN, OUTPUT);
 pinMode(STEP_PIN, OUTPUT);
}
void loop(){
 digitalWrite(DIR_PIN,HIGH);
 for(int i=0; i < 100; i++){
  digitalWrite(STEP_PIN, HIGH);
  delayMicroseconds(1000);
  digitalWrite(STEP_PIN, LOW);
  delayMicroseconds(1000);
 }
}
attempted solutions:
apart from quadruple-checking all wires and connections, i've tried switching the combination of wires that go from the breadboard to the stepper, but with no luck.
question:
am i doing someting wrong? is this a sign that something (stepper controller, motor) is broken?
any help would be MUCH appreciated
thanks!