hyperion.ng/libsrc/hyperion/LedDeviceTest.h
T. van der Zwan 4031a33f04 Added simple test for image2led map.
Added test executable for creating png from frame grabber.
Added test-device for exporting color values of leds to text file.
Updated configuration to match new color transform.
Finished first version of the Hyperion structure (IT WORKS [1% CPU]!)
2013-08-15 19:11:02 +00:00

20 lines
295 B
C++

#pragma once
// STL includes0
#include <fstream>
// Hyperion includes
#include <hyperion/LedDevice.h>
class LedDeviceTest : public LedDevice
{
public:
LedDeviceTest();
virtual ~LedDeviceTest();
virtual int write(const std::vector<RgbColor> & ledValues);
private:
std::ofstream _ofs;
};