mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
e1165e112f
* fix/refactor backlight stuff: - fix colors dont turn of when backlight 0 and black is set - add option to use not colored backlight - fix colored backlight not colored on very low color values - various code style tunings * apply needed change to wizard * backlight disabled on static color and efects * fix warnings * try fix udp compiler warnings
60 lines
1.2 KiB
C++
60 lines
1.2 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 UDP packets.
|
|
///
|
|
class ProviderUdp : public LedDevice
|
|
{
|
|
public:
|
|
///
|
|
/// 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
|
|
virtual bool init(const QJsonObject &deviceConfig);
|
|
|
|
///
|
|
/// Opens and configures the output device
|
|
///
|
|
/// @return Zero on succes else negative
|
|
///
|
|
int open();
|
|
|
|
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;
|
|
QString _defaultHost;
|
|
};
|