2017-11-29 17:59:26 +01:00
|
|
|
#pragma once
|
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
// hyperion includes
|
2017-11-29 17:59:26 +01:00
|
|
|
#include "ProviderRs232.h"
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to serial device using tpm2 protocol.
|
|
|
|
///
|
|
|
|
class LedDeviceKarate : public ProviderRs232
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
/// Constructs specific LedDevice
|
|
|
|
///
|
|
|
|
/// @param deviceConfig json device config
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
explicit LedDeviceKarate(const QJsonObject &deviceConfig);
|
2017-11-29 17:59:26 +01:00
|
|
|
|
|
|
|
/// constructs leddevice
|
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
virtual bool init(const QJsonObject &deviceConfig) override;
|
2017-11-29 17:59:26 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void receivedData(QByteArray data);
|
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
/// Writes the led color values to the led-device
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
virtual int write(const std::vector<ColorRgb> &ledValues) override;
|
2017-11-29 17:59:26 +01:00
|
|
|
};
|