Difference between revisions of "Stepper Board"

From Kevin Darrah Wiki
Jump to: navigation, search
(Created page with "...Back to Projects: 400px = The RTC Board = == Introduction == Based on the low cost easy to use Real Time Clock IC M...")
 
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
...Back to [[Projects:]]
 
...Back to [[Projects:]]
  
[[File:Screen Shot 2017-01-04 at 12.57.08 AM.png|400px]]
+
[[File:stepperGerber.png|400px]]
  
= The RTC Board =
+
= The Stepper Board =
 
== Introduction ==
 
== Introduction ==
Based on the low cost easy to use Real Time Clock IC MCP7940, this board offers a simple breakout for the part taking care of the sensitive crystal connections (probably wouldn't work very accurately on a breadboard)The 'N' version is with a battery backup, where the 'M' is not.  Either part can be used.... if the N version is placed, then the board also provides a CR1220 battery holder, which should work with 12 or 12.5mm batteries.   
+
This board is based on the [http://www.ti.com/lit/ds/symlink/drv8825.pdf DRV8825] Stepper Motor Driver.  It works with standard x4 wire bipolar stepper motors. 
 +
* Motor Voltage Supply from 8.2V to 45V
 +
* Phase Current up to 2.5A, but ~1A is more realistic without a heatsink and fan
 +
* Built in Step Controller, so strap the mode pins for the step mode: Full, Half, and Micro stepping. 
 +
* Easy control from a Microcontroller, digital pins to set the direction, enable the part, and step the motor.   
 +
* Fault Output Pin broken out and max current setting with a trim pot
 +
Note that this board breaks out clamping diodes for each of the motor connections - these should not be needed, but I added them in for experimentation purposes.   
  
[[File:rtcboardassy.png|400px]]
+
== Schematic ==
 +
 
 +
<span style="color:red">Do not use the 3V3 to power your project!</span> The active pin needs to be pulled HIGH in order to turn on that 3V3 rail from the board... this was an error in the design, so for now, the board requires an external power supply for the motor and a power supply for your control electronics (3V3/5V).
 +
 
 +
[[File:stepperSch.png|800px]]
  
== Schematic ==
 
[[File:Screen Shot 2017-01-04 at 9.40.14 AM.png|600px]]
 
 
== Purchase ==
 
== Purchase ==
Coming soon - given to Patrons ...
+
given to Patrons ...
  
 
== Parts ==
 
== Parts ==
The parts list can be downloaded [http://kevindarrah.com/download/arduino_code/RTCboardBOMv1.xlsx HERE] This can be directly uploaded into [https://www.digikey.com Digikey] if you'd like. 
+
Parts can be downloaded [[:File:StepBoardV1.xlsx|HERE]] and uploaded into [https://www.digikey.com Digikey]
  
 
== Assembly ==
 
== Assembly ==
 
+
Coming Soon...
{{#evt:
 
service=youtube
 
|id=https://www.youtube.com/watch?v=tlUzdUlY44Y
 
|dimensions=560x315
 
}}
 
  
 
== Tutorials ==
 
== Tutorials ==
  
 +
Little refresher on how stepper motors work:
 
{{#evt:
 
{{#evt:
 
service=youtube
 
service=youtube
|id=https://www.youtube.com/watch?v=UN56GDBot3Y
+
|id=https://www.youtube.com/watch?v=ePSCZ_DtF7c
 
|dimensions=560x315
 
|dimensions=560x315
 
}}
 
}}
  
 +
Tutorial using this board:
 
{{#evt:
 
{{#evt:
 
service=youtube
 
service=youtube
|id=https://www.youtube.com/watch?v=GvZCmH6BFHw
+
|id=https://www.youtube.com/watch?v=d-IKDQ5vqnU
 
|dimensions=560x315
 
|dimensions=560x315
 
}}
 
}}
 +
Resources:
 +
The sample [http://kevindarrah.com/download/arduino_code/StepBoardTest.ino CODE]

Latest revision as of 12:44, 18 June 2017

...Back to Projects:

StepperGerber.png

The Stepper Board

Introduction

This board is based on the DRV8825 Stepper Motor Driver. It works with standard x4 wire bipolar stepper motors.

  • Motor Voltage Supply from 8.2V to 45V
  • Phase Current up to 2.5A, but ~1A is more realistic without a heatsink and fan
  • Built in Step Controller, so strap the mode pins for the step mode: Full, Half, and Micro stepping.
  • Easy control from a Microcontroller, digital pins to set the direction, enable the part, and step the motor.
  • Fault Output Pin broken out and max current setting with a trim pot

Note that this board breaks out clamping diodes for each of the motor connections - these should not be needed, but I added them in for experimentation purposes.

Schematic

Do not use the 3V3 to power your project! The active pin needs to be pulled HIGH in order to turn on that 3V3 rail from the board... this was an error in the design, so for now, the board requires an external power supply for the motor and a power supply for your control electronics (3V3/5V).

StepperSch.png

Purchase

given to Patrons ...

Parts

Parts can be downloaded HERE and uploaded into Digikey

Assembly

Coming Soon...

Tutorials

Little refresher on how stepper motors work:

Tutorial using this board:

Resources:
The sample CODE