2016-09-26 17:50:11 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// hyperion incluse
|
|
|
|
#include "ProviderRs232.h"
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to DMX512 rs232 led device.
|
|
|
|
///
|
|
|
|
class LedDeviceDMX : public ProviderRs232
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
/// Constructs specific LedDevice
|
|
|
|
///
|
|
|
|
/// @param deviceConfig json device config
|
|
|
|
///
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceDMX(const QJsonObject &deviceConfig);
|
2016-09-26 17:50:11 +02:00
|
|
|
|
|
|
|
/// constructs leddevice
|
2016-10-13 21:59:58 +02:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2016-09-26 17:50:11 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
/// 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);
|
|
|
|
int _dmxDeviceType = 0;
|
|
|
|
int _dmxStart = 1;
|
|
|
|
int _dmxSlotsPerLed = 3;
|
2016-10-08 08:14:36 +02:00
|
|
|
int _dmxLedCount = 0;
|
2016-09-26 17:50:11 +02:00
|
|
|
unsigned int _dmxChannelCount = 0;
|
|
|
|
};
|