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
|
|
|
|
2022-09-30 17:02:40 +02:00
|
|
|
namespace Adalight
|
|
|
|
{
|
|
|
|
typedef enum ProtocolType
|
|
|
|
{
|
|
|
|
ADA = 0,
|
|
|
|
LBAPA,
|
|
|
|
AWA
|
|
|
|
} PROTOCOLTYPE;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2022-11-27 15:47:54 +01:00
|
|
|
private slots:
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Handle feedback provided by the device
|
|
|
|
/// Allows to show statistics and error for the "Awa" protocol, if configured in the ESP-sketch
|
|
|
|
///
|
|
|
|
void readFeedback() override;
|
|
|
|
|
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
|
|
|
|
2022-09-30 17:02:40 +02:00
|
|
|
///
|
|
|
|
/// @brief Prepare the protocol's header
|
|
|
|
///
|
|
|
|
void prepareHeader();
|
|
|
|
|
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
|
|
|
|
2022-09-30 17:02:40 +02:00
|
|
|
void whiteChannelExtension(uint8_t*& writer);
|
|
|
|
|
|
|
|
qint64 _bufferLength;
|
|
|
|
|
|
|
|
Adalight::PROTOCOLTYPE _streamProtocol;
|
|
|
|
|
|
|
|
bool _white_channel_calibration;
|
|
|
|
uint8_t _white_channel_limit;
|
|
|
|
uint8_t _white_channel_red;
|
|
|
|
uint8_t _white_channel_green;
|
|
|
|
uint8_t _white_channel_blue;
|
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
|