mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
dd16af0df5
Former-commit-id: ef02f164eaf3c2f9dd552c1c17b525cf6eed499c
32 lines
472 B
C++
32 lines
472 B
C++
|
|
// Local-Hyperion includes
|
|
#include "LedDeviceTest.h"
|
|
|
|
LedDeviceTest::LedDeviceTest(const std::string& output) :
|
|
_ofs(output.empty()?"/home/pi/LedDevice.out":output.c_str())
|
|
{
|
|
// empty
|
|
}
|
|
|
|
LedDeviceTest::~LedDeviceTest()
|
|
{
|
|
// empty
|
|
}
|
|
|
|
int LedDeviceTest::write(const std::vector<ColorRgb> & ledValues)
|
|
{
|
|
_ofs << "[";
|
|
for (const ColorRgb& color : ledValues)
|
|
{
|
|
_ofs << color;
|
|
}
|
|
_ofs << "]" << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int LedDeviceTest::switchOff()
|
|
{
|
|
return 0;
|
|
}
|