Gifu Valve Driver

Dependents:   LPC1114_GVD

GVD.hpp

Committer:
moneneholic
Date:
2016-08-04
Revision:
0:a5d388a0355c

File content as of revision 0:a5d388a0355c:

#ifndef GVD_HPP
#define GVD_HPP

#include "mbed.h"

class GVD{
public:
    GVD(PinName p0,PinName p1,PinName p2,PinName p3,PinName p4,PinName p5,PinName p6,PinName p7);
    void write(bool p0State,bool p1State,bool p2State,bool p3State,bool p4State,bool p5State,bool p6State,bool p7State);
    void off();
private:
    DigitalOut* _dOut[8]; 
};
#endif //GVD_HPP