Files
flippr-code/FlippR-Driver/src/output/Lamp.cpp
Johannes Wendel 8583294e0d bis nächste woche
2018-11-09 02:00:01 +01:00

39 lines
525 B
C++

/*
* Lamp.cpp
*
* Created on: Aug 2, 2018
* Author: rhetenor
*/
#include "Lamp.h"
namespace flippR_driver
{
namespace output
{
Lamp::Lamp(std::shared_ptr<utility::IOutputGPIOInterface> output_gpio_interface, int address, std::string name) :
OutputItem(output_gpio_interface, address, name)
{
// TODO Auto-generated constructor stub
}
Lamp::~Lamp()
{
// TODO Auto-generated destructor stub
}
void Lamp::activate()
{
// activate
}
void Lamp::deactivate()
{
// deactivate
}
} /* namespace output */
}