2016-05-30 23:58:31 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// hyperion incluse
|
2016-08-28 07:12:48 +02:00
|
|
|
#include "ProviderUdp.h"
|
2016-05-30 23:58:31 +02:00
|
|
|
|
|
|
|
///
|
2016-08-08 00:17:00 +02:00
|
|
|
/// Implementation of the LedDevice interface for sending led colors via udp.
|
2016-05-30 23:58:31 +02:00
|
|
|
///
|
2016-08-28 07:12:48 +02:00
|
|
|
class LedDeviceUdpRaw : public ProviderUdp
|
2016-05-30 23:58:31 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// Constructs specific LedDevice
|
2016-05-30 23:58:31 +02:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @param deviceConfig json device config
|
2016-05-30 23:58:31 +02:00
|
|
|
///
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceUdpRaw(const QJsonObject &deviceConfig);
|
2016-05-30 23:58:31 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
/// constructs leddevice
|
2016-10-13 21:59:58 +02:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2016-05-30 23:58:31 +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);
|
|
|
|
};
|