2013-11-11 21:07:24 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <string>
|
|
|
|
|
2013-11-14 19:04:17 +01:00
|
|
|
// Qt includes
|
|
|
|
#include <QTimer>
|
|
|
|
|
2015-11-08 16:31:41 +01:00
|
|
|
// hyperion include
|
2016-08-28 07:12:48 +02:00
|
|
|
#include "ProviderRs232.h"
|
2013-11-11 21:07:24 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to an Adalight led device.
|
|
|
|
///
|
2016-08-28 07:12:48 +02:00
|
|
|
class LedDeviceAdalight : public ProviderRs232
|
2013-11-11 21:07:24 +01:00
|
|
|
{
|
2013-11-14 19:04:17 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2013-11-11 21:07:24 +01:00
|
|
|
public:
|
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// Constructs specific LedDevice
|
2013-11-11 21:07:24 +01:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @param deviceConfig json device config
|
2013-11-11 21:07:24 +01:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDeviceAdalight(const Json::Value &deviceConfig);
|
|
|
|
|
|
|
|
/// constructs leddevice
|
|
|
|
static LedDevice* construct(const Json::Value &deviceConfig);
|
2013-11-11 21:07:24 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Writes the led color values to the led-device
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
2013-11-12 07:52:00 +01:00
|
|
|
virtual int write(const std::vector<ColorRgb> & ledValues);
|
2013-11-11 21:07:24 +01:00
|
|
|
|
|
|
|
/// Switch the leds off
|
|
|
|
virtual int switchOff();
|
|
|
|
|
2013-11-14 19:04:17 +01:00
|
|
|
private slots:
|
|
|
|
/// Write the last data to the leds again
|
|
|
|
void rewriteLeds();
|
|
|
|
|
2015-10-13 19:11:01 +02:00
|
|
|
protected:
|
2013-11-14 19:04:17 +01:00
|
|
|
/// Timer object which makes sure that led data is written at a minimum rate
|
|
|
|
/// The Adalight device will switch off when it does not receive data at least
|
|
|
|
/// every 15 seconds
|
|
|
|
QTimer _timer;
|
2013-11-11 21:07:24 +01:00
|
|
|
};
|
2016-08-23 20:07:12 +02:00
|
|
|
|