2015-10-13 19:11:01 +02:00
|
|
|
#pragma once
|
|
|
|
|
2016-08-14 10:46:44 +02:00
|
|
|
// hyperion include
|
|
|
|
#include "LedDeviceAdalight.h"
|
2015-10-13 19:11:01 +02:00
|
|
|
|
|
|
|
///
|
2015-10-13 23:35:27 +02:00
|
|
|
/// Implementation of the LedDevice interface for writing to an Adalight led device for APA102.
|
2015-10-13 19:11:01 +02:00
|
|
|
///
|
2016-10-08 08:14:36 +02:00
|
|
|
class LedDeviceAdalightApa102 : public ProviderRs232
|
2015-10-13 19:11:01 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
/// Constructs the LedDevice for attached Adalight device
|
|
|
|
///
|
|
|
|
/// @param outputDevice The name of the output device (eg '/dev/ttyS0')
|
|
|
|
/// @param baudrate The used baudrate for writing to the output device
|
|
|
|
///
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceAdalightApa102(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
|
|
|
/// create leddevice when type in config is set to this type
|
2016-10-13 21:59:58 +02:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2015-10-13 19:11:01 +02:00
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
virtual bool init(const QJsonObject &deviceConfig);
|
2016-10-08 08:14:36 +02:00
|
|
|
|
|
|
|
private:
|
2015-10-13 19:11:01 +02:00
|
|
|
///
|
|
|
|
/// Writes the led color values to the led-device
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
|
|
|
virtual int write(const std::vector<ColorRgb> & ledValues);
|
|
|
|
};
|
2016-08-23 20:07:12 +02:00
|
|
|
|