hyperion.ng/libsrc/leddevice/ProviderUdp.h
redPanther b8f1ad50b9 add ability for default values in providerudp (#251)
* add ability for default values in providerudp

* udp: move switchOff into baseclass

* udp: more code cleanups
2016-09-22 09:19:31 +02:00

65 lines
1.4 KiB
C++

#pragma once
#include <QUdpSocket>
// Hyperion includes
#include <leddevice/LedDevice.h>
#include <utils/Logger.h>
///
/// The ProviderUdp implements an abstract base-class for LedDevices using the SPI-device.
///
class ProviderUdp : public LedDevice
{
public:
///
/// Constructs specific LedDevice
///
/// @param deviceConfig json device config
///
ProviderUdp();
///
/// Destructor of the LedDevice; closes the output device if it is open
///
virtual ~ProviderUdp();
///
/// Sets configuration
///
/// @param deviceConfig the json device config
/// @return true if success
bool setConfig(const Json::Value &deviceConfig, int defaultLatchTime=-1, int defaultPort=0, std::string defaultHost="127.0.0.1");
///
/// Opens and configures the output device
///
/// @return Zero on succes else negative
///
int open();
/// Switch the leds off
virtual int switchOff();
protected:
///
/// Writes the given bytes/bits to the SPI-device and sleeps the latch time to ensure that the
/// values are latched.
///
/// @param[in] size The length of the data
/// @param[in] data The data
///
/// @return Zero on succes else negative
///
int writeBytes(const unsigned size, const uint8_t *data);
/// The time which the device should be untouched after a write
int _LatchTime_ns;
///
QUdpSocket * _udpSocket;
QHostAddress _address;
quint16 _port;
};