added tests

This commit is contained in:
Neeflix
2018-06-28 00:25:26 +02:00
parent 66dd3f2b42
commit 252dbeca47
61 changed files with 4867 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
/*
* InputGPIOInterface.h
*
* Created on: May 31, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef SRC_UTILITIES_IINPUTGPIOINTERFACE_H_
#define SRC_UTILITIES_IINPUTGPIOINTERFACE_H_
class IInputGPIOInterface
{
public:
virtual ~IInputGPIOInterface(){};
virtual bool read_input_data(char pin) = 0;
};
#endif /* SRC_UTILITIES_INPUTGPIOINTERFACE_H_ */