2013-07-26 22:38:34 +02:00
|
|
|
#pragma once
|
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2016-10-13 21:59:58 +02:00
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QJsonDocument>
|
2016-09-23 08:49:22 +02:00
|
|
|
|
2013-07-26 22:38:34 +02:00
|
|
|
// STL incldues
|
|
|
|
#include <vector>
|
2016-09-23 08:49:22 +02:00
|
|
|
#include <string>
|
2016-08-23 20:07:12 +02:00
|
|
|
#include <map>
|
2016-09-23 08:49:22 +02:00
|
|
|
#include <algorithm>
|
2016-08-14 10:46:44 +02:00
|
|
|
|
2016-11-29 23:14:15 +01:00
|
|
|
#include <QTimer>
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
class LedDevice;
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
typedef LedDevice* ( *LedDeviceCreateFuncType ) ( const QJsonObject& );
|
2016-08-23 20:07:12 +02:00
|
|
|
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-10-27 18:04:37 +01:00
|
|
|
/// Switch the leds off
|
2016-09-23 08:49:22 +02:00
|
|
|
virtual int switchOff();
|
|
|
|
|
|
|
|
virtual int setLedValues(const std::vector<ColorRgb>& ledValues);
|
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);
|
2016-10-08 08:14:36 +02:00
|
|
|
static std::string activeDevice() { return _activeDevice; }
|
2016-10-09 22:22:17 +02:00
|
|
|
static QJsonObject getLedDeviceSchemas();
|
2016-10-08 08:14:36 +02:00
|
|
|
static void setLedCount(int ledCount);
|
|
|
|
static int getLedCount() { return _ledCount; }
|
2016-06-25 22:08:17 +02:00
|
|
|
protected:
|
2016-09-23 08:49:22 +02:00
|
|
|
///
|
|
|
|
/// 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;
|
2016-12-02 12:07:24 +01:00
|
|
|
virtual bool init(const QJsonObject &deviceConfig);
|
2016-09-23 08:49:22 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
/// The buffer containing the packed RGB values
|
|
|
|
std::vector<uint8_t> _ledBuffer;
|
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
bool _deviceReady;
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
static std::string _activeDevice;
|
|
|
|
static LedDeviceRegistry _ledDeviceMap;
|
2016-10-08 08:14:36 +02:00
|
|
|
|
|
|
|
static int _ledCount;
|
|
|
|
static int _ledRGBCount;
|
|
|
|
static int _ledRGBWCount;
|
2016-11-29 23:14:15 +01:00
|
|
|
|
|
|
|
/// Timer object which makes sure that led data is written at a minimum rate
|
|
|
|
/// e.g. Adalight device will switch off when it does not receive data at least every 15 seconds
|
2016-12-02 12:07:24 +01:00
|
|
|
QTimer _refresh_timer;
|
|
|
|
unsigned int _refresh_timer_interval;
|
|
|
|
|
2016-11-29 23:14:15 +01:00
|
|
|
protected slots:
|
|
|
|
/// Write the last data to the leds again
|
|
|
|
int rewriteLeds();
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<ColorRgb> _ledValues;
|
2013-07-26 22:38:34 +02:00
|
|
|
};
|