Link to Eagle files on GitHub: https://github.com/ForceTronics/Bipolar_Stepper_Driver_Circuit/tree/master
The ForceTronics blog provides tutorials on creating fun and unique electronic projects. The goal of each project will be to create a foundation or jumping off point for amateur, hobbyist, and professional engineers to build on and innovate. Please use the comments section for questions and go to forcetronics.com for information on forcetronics consulting services.
Showing posts with label bipolar. Show all posts
Showing posts with label bipolar. Show all posts
Wednesday, January 31, 2018
Designing a Driver Circuit for a Bipolar Stepper Motor Part 2
In this video we design a low cost driver circuit for a four wire bipolar stepper motor using two H bridges.
Link to Eagle files on GitHub: https://github.com/ForceTronics/Bipolar_Stepper_Driver_Circuit/tree/master
Link to Eagle files on GitHub: https://github.com/ForceTronics/Bipolar_Stepper_Driver_Circuit/tree/master
Wednesday, December 27, 2017
Designing a Driver Circuit for a Bipolar Stepper Motor Part 1
In this video we design a low cost driver circuit for a four wire bipolar stepper motor using two H bridges.
//********************Arduino code from video***********************
#include <Stepper.h>
const int numberOfSteps = 100; //number of steps you want your stepper motor to take
// initialize the stepper library on pins 8 through 11:
Stepper myStepper(numberOfSteps, 8, 9, 10, 11);
void setup() {
// set the speed at 60 rpm:
myStepper.setSpeed(60);
}
void loop() {
myStepper.step(numberOfSteps);
delay(1000);
}
//********************Arduino code from video***********************
#include <Stepper.h>
const int numberOfSteps = 100; //number of steps you want your stepper motor to take
// initialize the stepper library on pins 8 through 11:
Stepper myStepper(numberOfSteps, 8, 9, 10, 11);
void setup() {
// set the speed at 60 rpm:
myStepper.setSpeed(60);
}
void loop() {
myStepper.step(numberOfSteps);
delay(1000);
}
Labels:
arduino,
bipolar,
circuit,
driver,
electric motor,
H bridge,
MOSFET,
motor,
stepper,
Tutorial
Subscribe to:
Posts (Atom)