refactored utility namespace
This commit is contained in:
34
FlippR-Driver/src/utility/OutputGPIOInterface.h
Normal file
34
FlippR-Driver/src/utility/OutputGPIOInterface.h
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* OutputGPIOInterface.h
|
||||
*
|
||||
* Created on: May 31, 2018
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
|
||||
*/
|
||||
|
||||
#ifndef SRC_UTILITIES_OUTPUTGPIOINTERFACE_H_
|
||||
#define SRC_UTILITIES_OUTPUTGPIOINTERFACE_H_
|
||||
|
||||
#include "GPIOInterface.h"
|
||||
#include <mcp23017.h>
|
||||
|
||||
namespace FlippR_Driver
|
||||
{
|
||||
namespace utility
|
||||
{
|
||||
class OutputGPIOInterface : GPIOInterface
|
||||
{
|
||||
|
||||
public:
|
||||
void activate_cabinet_item(CabinetItem &item);
|
||||
void write_display(Display &display);
|
||||
|
||||
private:
|
||||
void
|
||||
private:
|
||||
IBlockingQueue <CabinetItem> event_queue;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user