2016-05-30 23:58:31 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
// hyperion incluse
|
|
|
|
#include "LedUdpDevice.h"
|
|
|
|
|
|
|
|
///
|
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
|
|
|
///
|
|
|
|
class LedDeviceUdpRaw : public LedUdpDevice
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
2016-08-08 00:17:00 +02:00
|
|
|
/// Constructs the LedDevice for sending led colors via udp
|
2016-05-30 23:58:31 +02:00
|
|
|
///
|
2016-08-08 00:17:00 +02:00
|
|
|
/// @param outputDevice hostname:port
|
|
|
|
/// @param latchTime
|
2016-05-30 23:58:31 +02:00
|
|
|
///
|
|
|
|
|
2016-08-08 00:17:00 +02:00
|
|
|
LedDeviceUdpRaw(const std::string& outputDevice, const unsigned latchTime);
|
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);
|
|
|
|
|
|
|
|
/// Switch the leds off
|
|
|
|
virtual int switchOff();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/// the number of leds (needed when switching off)
|
|
|
|
size_t mLedCount;
|
|
|
|
};
|