Hello program for StepperMotorUni library
Dependencies: StepperMotorUni mbed
Dependents: StepperMotorUni_Hello
Sample code for stepper motor operation with StepperMotorUni library
4 output pin generates signal for stepper motor driver.

This library can operate in parallel for multiple stepper motors.
The mbed generates pulses on 4 output pins for external driver stage.
The StepperMotorUni library can generate 3 types of pulses.
1 phase drive (wave drive)
#include "mbed.h"
#include "StepperMotorUni.h"
StepperMotorUni motor( p26, p25, p24, p23 );
int main()
{
motor.set_operation_phase_mode( StepperMotorUni::ONE_PHASE );
...
...

2 phase drive
#include "mbed.h"
#include "StepperMotorUni.h"
StepperMotorUni motor( p26, p25, p24, p23 );
int main()
{
motor.set_operation_phase_mode( StepperMotorUni::TWO_PHASE );
...
...

1-2 phase (half step) drive
#include "mbed.h"
#include "StepperMotorUni.h"
StepperMotorUni motor( p26, p25, p24, p23 );
int main()
{
motor.set_operation_phase_mode( StepperMotorUni::HALFSTEP );
...
...

Components pages
Components pages are available for bipolar and unipolar motor libraries
Diff: StepperMotorUni.lib
- Revision:
- 2:32e0b120ddb7
- Parent:
- 1:80c512ccd0f2
diff -r 80c512ccd0f2 -r 32e0b120ddb7 StepperMotorUni.lib --- a/StepperMotorUni.lib Wed Apr 22 03:26:01 2015 +0000 +++ b/StepperMotorUni.lib Wed Sep 13 04:03:01 2017 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/okano/code/StepperMotorUni/#6909efe4c8ac +http://mbed.org/users/okano/code/StepperMotorUni/#7e6fb609780a