2020-07-12 20:27:56 +02:00
|
|
|
#ifndef LEDEVICETADALIGHT_H
|
|
|
|
#define LEDEVICETADALIGHT_H
|
2013-11-11 21:07:24 +01:00
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
// hyperion includes
|
2016-08-28 07:12:48 +02:00
|
|
|
#include "ProviderRs232.h"
|
2013-11-11 21:07:24 +01:00
|
|
|
|
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// Implementation of the LedDevice interface for writing to an Adalight LED-device.
|
2013-11-11 21:07:24 +01:00
|
|
|
///
|
2016-08-28 07:12:48 +02:00
|
|
|
class LedDeviceAdalight : public ProviderRs232
|
2013-11-11 21:07:24 +01:00
|
|
|
{
|
2013-11-14 19:04:17 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2013-11-11 21:07:24 +01:00
|
|
|
public:
|
2020-07-12 20:27:56 +02:00
|
|
|
|
2013-11-11 21:07:24 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @brief Constructs an Adalight LED-device
|
2013-11-11 21:07:24 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param deviceConfig Device's configuration as JSON-Object
|
2013-11-11 21:07:24 +01:00
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
explicit LedDeviceAdalight(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02: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
|
2016-10-13 21:59:58 +02:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2013-11-11 21:07:24 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
private:
|
2016-09-23 08:49:22 +02:00
|
|
|
|
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
|
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
bool init(const QJsonObject &deviceConfig) override;
|
2017-02-09 20:10:57 +01:00
|
|
|
|
2013-11-11 21:07:24 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @brief Writes the RGB-Color values to the LEDs.
|
2013-11-11 21:07:24 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param[in] ledValues The RGB-color per LED
|
|
|
|
/// @return Zero on success, else negative
|
2013-11-11 21:07:24 +01:00
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
int write(const std::vector<ColorRgb> & ledValues) override;
|
2020-08-02 22:32:00 +02:00
|
|
|
|
2016-12-14 22:45:00 +01:00
|
|
|
const short _headerSize;
|
2017-02-09 20:10:57 +01:00
|
|
|
bool _ligthBerryAPA102Mode;
|
2013-11-11 21:07:24 +01:00
|
|
|
};
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
#endif // LEDEVICETADALIGHT_H
|