mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
197af35de0
* start ledclone * led cloning: clone scan areas from original led main: show exceptions, better exit * tune json schema for new option. somwe cleanup * fix warnings and bug for framebuffer selection. thx to clang brought by new osx buikld on travis * make ledclone feature work flawlessly for effects too. Effect sees the ledstring without cloned leds. cloned leds will be inserted just before sending to leddevice additional: remove warnings and fix code style * fix warning
40 lines
804 B
C++
40 lines
804 B
C++
#pragma once
|
|
|
|
// STL includes
|
|
#include <string>
|
|
|
|
// hyperion incluse
|
|
#include "LedUdpDevice.h"
|
|
|
|
///
|
|
/// Implementation of the LedDevice interface for sending led colors via udp.
|
|
///
|
|
class LedDeviceUdpRaw : public LedUdpDevice
|
|
{
|
|
public:
|
|
///
|
|
/// Constructs the LedDevice for sending led colors via udp
|
|
///
|
|
/// @param outputDevice hostname:port
|
|
/// @param latchTime
|
|
///
|
|
|
|
LedDeviceUdpRaw(const std::string& outputDevice, const unsigned latchTime);
|
|
|
|
///
|
|
/// 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;
|
|
};
|