This commit is contained in:
Jonas Zeunert
2018-11-20 23:44:37 +01:00
parent d767449dce
commit c1e4c0d658
11 changed files with 13 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
/*
* ISolenoid.h
*
* Created on: Aug 7, 2018
* Author: rhetenor
*/
#ifndef _SRC_OUTPUT_ISOLENOID_H_
#define _SRC_OUTPUT_ISOLENOID_H_
namespace flippR_driver
{
namespace output
{
class ISolenoid
{
public:
~ISolenoid() {};
void trigger();
};
}
}
#endif