Page 1 of 1

troubleshoot arduino-easydriver

Posted: Sat Dec 29, 2018 11:29 am
by jlong_mpls
I'm very new to these types of electronics, so I apologize basic skills.
I'm trying to make a stepper motor turn. Based on this article: http://bildr.org/2011/06/easydriver/
I purchased:
Arduino Uno - R3 (SKU DEV-11021)
EasyDriver - Stepper Motor Driver (ROB-12779)
Stepper Motor with Cable (ROB-09238)
-------
I'm using Arduino Software (IDE) 1.8.1 running on a Windows 8.1 OS.
After failing to get the stepper motor to work using the above example, I went for very basic @
http://www.schmalzhaus.com/EasyDriver/E ... mples.html
I have the pieces connected and running a basic script
=============
void setup() {
// put your setup code here, to run once:
pinMode(8, OUTPUT);
pinMode(9, OUTPUT);
digitalWrite(8, LOW);
digitalWrite(9, LOW);
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(9, HIGH);
digitalWrite(LED_BUILTIN, HIGH);
delay(10000);
digitalWrite(9, LOW);
digitalWrite(LED_BUILTIN, LOW);
delay(10000);
}
===============
My multimeter shows 5 v on pin 9 when the LED is lit and 0 when the LED is off.
No power through pin 8
Power is supplied to the EasyDriver board from a power adapter 12V...2.0A
The power led comes on.
using the ground and testing the stepper motor connectors My multimeter shows various voltages
I have tested continuity on the stepper motor, so I believe they are connected correctly.
I thought I might have damaged the EasyDriver board, so I purchased a new one with the same results.
Am I missing something basic, or any suggestions on troubleshooting?
Thanks for any guidance.

Re: troubleshoot arduino-easydriver

Posted: Sun Dec 30, 2018 11:15 am
by jlong_mpls
I found this link: https://learn.sparkfun.com/tutorials/ea ... ng-further
and was able to get the stepper motor to turn.
Sorry to have bothered.