2013-11-11 21:07:24 +01:00
|
|
|
#pragma once
|
|
|
|
|
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-10-13 21:59:58 +02:00
|
|
|
LedDeviceAdalight(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
|
|
|
/// constructs leddevice
|
2016-10-13 21:59:58 +02:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2013-11-11 21:07:24 +01:00
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
virtual bool init(const QJsonObject &deviceConfig);
|
2016-09-23 08:49:22 +02:00
|
|
|
|
2017-02-09 20:10:57 +01:00
|
|
|
public slots:
|
|
|
|
void receivedData(QByteArray data);
|
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
private:
|
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);
|
2016-12-01 16:17:14 +01:00
|
|
|
|
2016-12-14 22:45:00 +01:00
|
|
|
const short _headerSize;
|
2017-02-09 20:10:57 +01:00
|
|
|
bool _ligthBerryAPA102Mode;
|
2013-11-11 21:07:24 +01:00
|
|
|
};
|
2016-08-23 20:07:12 +02:00
|
|
|
|