Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Timer by
StepperMotor/Stepper.h
- Committer:
- Jagang
- Date:
- 2016-05-04
- Revision:
- 58:02dc8328975a
- Child:
- 71:5590dbe8393a
File content as of revision 58:02dc8328975a:
#ifndef MBED_STEPPER_H
#define MBED_STEPPER_H
#include "mbed.h"
class Stepper
{
public:
Stepper(PinName _en, PinName _stepPin, PinName dir, PinName _minEndStop, float step_per_mm);
void step(int number, int dir, float speed);
void mm(int number, int dir);
void mm(float distance);
void enable();
void disable();
int getEndStop() {return minEndStop.read();}
float Step_Per_MM;
private:
DigitalOut en;
DigitalOut stepPin;
DigitalOut direction;
DigitalIn minEndStop;
};
#endif
