2013-08-15 21:11:02 +02:00
|
|
|
#pragma once
|
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
// STL includes
|
2013-08-15 21:11:02 +02:00
|
|
|
#include <fstream>
|
|
|
|
|
2013-12-17 19:50:15 +01:00
|
|
|
// Leddevice includes
|
|
|
|
#include <leddevice/LedDevice.h>
|
2013-08-15 21:11:02 +02:00
|
|
|
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice that write the led-colors to an
|
|
|
|
/// ASCII-textfile('/home/pi/LedDevice.out')
|
|
|
|
///
|
2016-03-23 11:12:34 +01:00
|
|
|
class LedDeviceFile : public LedDevice
|
2013-08-15 21:11:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// Constructs specific LedDevice
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @param deviceConfig json device config
|
|
|
|
///
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceFile(const QJsonObject &deviceConfig);
|
2013-09-09 04:54:13 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Destructor of this test-device
|
|
|
|
///
|
2016-03-23 11:12:34 +01:00
|
|
|
virtual ~LedDeviceFile();
|
2013-08-15 21:11:02 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
/// constructs leddevice
|
2016-10-13 21:59:58 +02:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Sets configuration
|
|
|
|
///
|
|
|
|
/// @param deviceConfig the json device config
|
|
|
|
/// @return true if success
|
2016-10-13 21:59:58 +02:00
|
|
|
virtual bool init(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
protected:
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
|
|
|
/// Writes the given led-color values to the output stream
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
///
|
|
|
|
/// @return Zero on success else negative
|
|
|
|
///
|
2013-11-11 10:00:37 +01:00
|
|
|
virtual int write(const std::vector<ColorRgb> & ledValues);
|
2013-08-15 21:11:02 +02:00
|
|
|
|
2013-09-09 04:54:13 +02:00
|
|
|
/// The outputstream
|
2013-08-15 21:11:02 +02:00
|
|
|
std::ofstream _ofs;
|
|
|
|
};
|