mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
2d88cdc2d3
* initial support for leddevice options * fix schema and editor init * fix led editor labels and schema * add some led schemas * led config: insert current values. not yet perfect, but it works
72 lines
1.6 KiB
C++
72 lines
1.6 KiB
C++
#pragma once
|
|
|
|
// STL incldues
|
|
#include <vector>
|
|
#include <QObject>
|
|
#include <map>
|
|
|
|
// Utility includes
|
|
#include <utils/ColorRgb.h>
|
|
#include <utils/ColorRgbw.h>
|
|
#include <utils/RgbToRgbw.h>
|
|
#include <utils/Logger.h>
|
|
#include <functional>
|
|
#include <json/json.h>
|
|
|
|
class LedDevice;
|
|
|
|
typedef LedDevice* ( *LedDeviceCreateFuncType ) ( const Json::Value& );
|
|
typedef std::map<std::string,LedDeviceCreateFuncType> LedDeviceRegistry;
|
|
|
|
///
|
|
/// Interface (pure virtual base class) for LedDevices.
|
|
///
|
|
class LedDevice : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LedDevice();
|
|
///
|
|
/// Empty virtual destructor for pure virtual base class
|
|
///
|
|
virtual ~LedDevice() {}
|
|
|
|
///
|
|
/// Writes the RGB-Color values to the leds.
|
|
///
|
|
/// @param[in] ledValues The RGB-color per led
|
|
///
|
|
/// @return Zero on success else negative
|
|
///
|
|
virtual int write(const std::vector<ColorRgb>& ledValues) = 0;
|
|
|
|
/// Switch the leds off
|
|
virtual int switchOff() = 0;
|
|
|
|
///
|
|
/// Opens and configures the output device
|
|
///
|
|
/// @return Zero on succes else negative
|
|
///
|
|
virtual int open();
|
|
|
|
static int addToDeviceMap(std::string name, LedDeviceCreateFuncType funcPtr);
|
|
static const LedDeviceRegistry& getDeviceMap();
|
|
static void setActiveDevice(std::string dev);
|
|
static std::string activeDevice() { return _activeDevice; };
|
|
static Json::Value getLedDeviceSchemas();
|
|
|
|
protected:
|
|
/// The common Logger instance for all LedDevices
|
|
Logger * _log;
|
|
|
|
int _ledCount;
|
|
|
|
/// The buffer containing the packed RGB values
|
|
std::vector<uint8_t> _ledBuffer;
|
|
|
|
static std::string _activeDevice;
|
|
static LedDeviceRegistry _ledDeviceMap;
|
|
};
|