2020-07-12 20:27:56 +02:00
|
|
|
#ifndef LEDEVICEKARATE_H
|
|
|
|
#define LEDEVICEKARATE_H
|
2017-11-29 17:59:26 +01:00
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
// hyperion includes
|
2017-11-29 17:59:26 +01:00
|
|
|
#include "ProviderRs232.h"
|
|
|
|
|
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// Implementation of the LedDevice interface for writing to serial device
|
2017-11-29 17:59:26 +01:00
|
|
|
///
|
|
|
|
class LedDeviceKarate : public ProviderRs232
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-07-12 20:27:56 +02:00
|
|
|
|
2017-11-29 17:59:26 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @brief Constructs a Karate LED-device
|
2017-11-29 17:59:26 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param deviceConfig Device's configuration as JSON-Object
|
2017-11-29 17:59:26 +01:00
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
explicit LedDeviceKarate(const QJsonObject &deviceConfig);
|
2017-11-29 17:59:26 +01:00
|
|
|
|
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
|
2017-11-29 17:59:26 +01:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
|
|
|
|
2021-03-19 22:52:04 +01:00
|
|
|
///
|
|
|
|
/// @brief Get a Karate device's resource properties
|
|
|
|
///
|
|
|
|
/// @param[in] params Parameters to query device
|
|
|
|
/// @return A JSON structure holding the device's properties
|
|
|
|
///
|
|
|
|
QJsonObject getProperties(const QJsonObject& params) override;
|
|
|
|
|
2017-11-29 17:59:26 +01:00
|
|
|
private:
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Initialise the device's configuration
|
|
|
|
///
|
|
|
|
/// @param[in] deviceConfig the JSON device configuration
|
|
|
|
/// @return True, if success
|
2017-11-29 17:59:26 +01:00
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
bool init(const QJsonObject &deviceConfig) override;
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
/// @brief Writes the RGB-Color values to the LEDs.
|
2017-11-29 17:59:26 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param[in] ledValues The RGB-color per LED
|
|
|
|
/// @return Zero on success, else negative
|
2017-11-29 17:59:26 +01:00
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
int write(const std::vector<ColorRgb> &ledValues) override;
|
2017-11-29 17:59:26 +01:00
|
|
|
};
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
#endif // LEDEVICEKARATE_H
|