2020-07-12 20:27:56 +02:00
|
|
|
#ifndef LEDEVICETPM2NET_H
|
|
|
|
#define LEDEVICETPM2NET_H
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2016-09-04 09:07:10 +02:00
|
|
|
// hyperion includes
|
|
|
|
#include "ProviderUdp.h"
|
|
|
|
|
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// Implementation of the LedDevice interface for sending LED colors via udp tpm2.net packets
|
2016-08-23 20:07:12 +02:00
|
|
|
///
|
2016-09-04 09:07:10 +02:00
|
|
|
class LedDeviceTpm2net : public ProviderUdp
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
|
|
|
public:
|
2020-07-12 20:27:56 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @brief Constructs a TPM2 LED-device fed via UDP
|
2016-08-23 20:07:12 +02:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param deviceConfig Device's configuration as JSON-Object
|
2016-08-23 20:07:12 +02:00
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
explicit LedDeviceTpm2net(const QJsonObject &deviceConfig);
|
|
|
|
|
2021-09-15 10:31:56 +02:00
|
|
|
///
|
|
|
|
/// @brief Destructor of the TPM2 LED-device
|
|
|
|
///
|
|
|
|
~LedDeviceTpm2net() override;
|
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
///
|
|
|
|
/// @brief Constructs the LED-device
|
|
|
|
///
|
|
|
|
/// @param[in] deviceConfig Device's configuration as JSON-Object
|
|
|
|
/// @return LedDevice constructed
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Initialise the device's configuration
|
2016-08-23 20:07:12 +02:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param[in] deviceConfig the JSON device configuration
|
|
|
|
/// @return True, if success
|
2016-08-23 20:07:12 +02:00
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
bool init(const QJsonObject &deviceConfig) override;
|
2016-08-23 20:07:12 +02:00
|
|
|
|
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @brief Writes the RGB-Color values to the LEDs.
|
2016-08-23 20:07:12 +02:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param[in] ledValues The RGB-color per LED
|
|
|
|
/// @return Zero on success, else negative
|
2016-08-23 20:07:12 +02:00
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
int write(const std::vector<ColorRgb> & ledValues) override;
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2016-09-04 09:07:10 +02:00
|
|
|
int _tpm2_max;
|
2016-09-22 09:19:31 +02:00
|
|
|
int _tpm2ByteCount;
|
|
|
|
int _tpm2TotalPackets;
|
|
|
|
int _tpm2ThisPacket;
|
2021-09-15 10:31:56 +02:00
|
|
|
|
|
|
|
uint8_t * _tpm2_buffer;
|
2016-08-23 20:07:12 +02:00
|
|
|
};
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
#endif // LEDEVICETPM2NET_H
|