hiro ng / stepping_moter

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