39 lines
525 B
C++
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 */
|
|
}
|