14 lines
217 B
C++
Executable File
14 lines
217 B
C++
Executable File
#ifndef _MIKU_RELAY_H_
|
|
#define _MIKU_RELAY_H_
|
|
|
|
class Miku_Relay {
|
|
public:
|
|
Miku_Relay();
|
|
Miku_Relay(int on, int off);
|
|
void setOn(void);
|
|
void setOff(void);
|
|
private:
|
|
int onPin, offPin;
|
|
};
|
|
|
|
#endif |