mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
4c78302473
Conflicts: libsrc/leddevice/LedDeviceTpm2net.cpp libsrc/leddevice/LedDeviceUdpRaw.cpp libsrc/leddevice/ProviderUdp.cpp libsrc/leddevice/ProviderUdp.h
70 lines
1.4 KiB
C++
70 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();
|
|
|
|
///
|
|
/// Constructs specific LedDevice
|
|
///
|
|
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;
|
|
};
|
|
|