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.
stepping_moter.h
- Committer:
- paasukusai
- Date:
- 2012-05-15
- Revision:
- 0:110462dc43d1
File content as of revision 0:110462dc43d1:
#ifndef MBED_STEPPING_MOTER_H
#define MBED_STEPPING_MOTER_H
class stepping_moter{
public:
stepping_moter(PinName p1,PinName p2,PinName p3,PinName p4);
void step_moter(int deg_set, double wait_time);
private:
BusOut _d;
};//class
#endif