2013-07-26 22:38:34 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL incldues
|
|
|
|
#include <vector>
|
2016-08-14 10:46:44 +02:00
|
|
|
#include <QObject>
|
2016-08-23 20:07:12 +02:00
|
|
|
#include <map>
|
2016-08-14 10:46:44 +02:00
|
|
|
|
2013-07-26 22:38:34 +02:00
|
|
|
// Utility includes
|
2013-11-11 10:00:37 +01:00
|
|
|
#include <utils/ColorRgb.h>
|
2016-05-31 22:55:56 +02:00
|
|
|
#include <utils/ColorRgbw.h>
|
|
|
|
#include <utils/RgbToRgbw.h>
|
2016-06-25 22:08:17 +02:00
|
|
|
#include <utils/Logger.h>
|
2016-08-23 20:07:12 +02:00
|
|
|
#include <functional>
|
|
|
|
#include <json/json.h>
|
|
|
|
|
|
|
|
class LedDevice;
|
|
|
|
|
|
|
|
typedef LedDevice* ( *LedDeviceCreateFuncType ) ( const Json::Value& );
|
|
|
|
typedef std::map<std::string,LedDeviceCreateFuncType> LedDeviceRegistry;
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Interface (pure virtual base class) for LedDevices.
|
|
|
|
///
|
2016-08-14 10:46:44 +02:00
|
|
|
class LedDevice : public QObject
|
2013-07-26 22:38:34 +02:00
|
|
|
{
|
2016-08-14 10:46:44 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2013-07-26 22:38:34 +02:00
|
|
|
public:
|
2016-06-25 22:08:17 +02:00
|
|
|
LedDevice();
|
2013-09-09 22:35:28 +02:00
|
|
|
///
|
|
|
|
/// Empty virtual destructor for pure virtual base class
|
|
|
|
///
|
2016-06-25 22:08:17 +02:00
|
|
|
virtual ~LedDevice() {}
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2013-09-09 22:35:28 +02:00
|
|
|
///
|
|
|
|
/// Writes the RGB-Color values to the leds.
|
|
|
|
///
|
|
|
|
/// @param[in] ledValues The RGB-color per led
|
|
|
|
///
|
|
|
|
/// @return Zero on success else negative
|
|
|
|
///
|
2013-11-11 10:00:37 +01:00
|
|
|
virtual int write(const std::vector<ColorRgb>& ledValues) = 0;
|
2013-10-27 18:04:37 +01:00
|
|
|
|
|
|
|
/// Switch the leds off
|
|
|
|
virtual int switchOff() = 0;
|
2016-06-25 22:08:17 +02:00
|
|
|
|
2016-07-13 11:18:12 +02:00
|
|
|
///
|
|
|
|
/// Opens and configures the output device
|
|
|
|
///
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
2016-07-17 14:58:05 +02:00
|
|
|
virtual int open();
|
2016-07-13 11:18:12 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
static int addToDeviceMap(std::string name, LedDeviceCreateFuncType funcPtr);
|
|
|
|
static const LedDeviceRegistry& getDeviceMap();
|
|
|
|
static void setActiveDevice(std::string dev);
|
|
|
|
static std::string activeDevice() { return _activeDevice; };
|
2016-06-25 22:08:17 +02:00
|
|
|
protected:
|
2016-08-14 10:46:44 +02:00
|
|
|
/// The common Logger instance for all LedDevices
|
2016-06-25 22:08:17 +02:00
|
|
|
Logger * _log;
|
2016-08-14 10:46:44 +02:00
|
|
|
|
|
|
|
int _ledCount;
|
|
|
|
|
|
|
|
/// The buffer containing the packed RGB values
|
|
|
|
std::vector<uint8_t> _ledBuffer;
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
static std::string _activeDevice;
|
|
|
|
static LedDeviceRegistry _ledDeviceMap;
|
2013-07-26 22:38:34 +02:00
|
|
|
};
|