2020-07-12 20:27:56 +02:00
|
|
|
#ifndef LEDEVICEAPA102_H
|
|
|
|
#define LEDEVICEAPA102_H
|
2014-12-01 10:04:27 +01:00
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
// hyperion includes
|
2016-08-28 07:12:48 +02:00
|
|
|
#include "ProviderSpi.h"
|
2016-09-23 08:49:22 +02:00
|
|
|
|
2021-10-28 19:54:54 +02:00
|
|
|
/// The maximal level supported by the APA brightness control field, 31
|
|
|
|
const int APA102_BRIGHTNESS_MAX_LEVEL = 31;
|
|
|
|
|
2014-12-01 10:04:27 +01:00
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to APA102 led device.
|
|
|
|
///
|
2016-08-28 07:12:48 +02:00
|
|
|
class LedDeviceAPA102 : public ProviderSpi
|
2014-12-01 10:04:27 +01:00
|
|
|
{
|
|
|
|
public:
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Constructs an APA102 LED-device
|
2014-12-01 10:04:27 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param deviceConfig Device's configuration as JSON-Object
|
2014-12-01 10:04:27 +01:00
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
explicit LedDeviceAPA102(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);
|
2016-05-10 12:16:19 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Initialise the device's configuration
|
2020-02-10 15:21:58 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param[in] deviceConfig the JSON device configuration
|
|
|
|
/// @return True, if success
|
2020-02-10 15:21:58 +01:00
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
bool init(const QJsonObject &deviceConfig) override;
|
2020-07-12 20:27:56 +02:00
|
|
|
|
2014-12-01 10:04:27 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @brief Writes the RGB-Color values to the LEDs.
|
2014-12-01 10:04:27 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param[in] ledValues The RGB-color per LED
|
|
|
|
/// @return Zero on success, else negative
|
2014-12-01 10:04:27 +01:00
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
int write(const std::vector<ColorRgb> & ledValues) override;
|
2021-10-28 19:54:54 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Writes the RGB-Color values to the SPI Tx buffer setting considering a given brightness level
|
|
|
|
///
|
|
|
|
/// @param[in,out] txBuf The packed spi transfer buffer of the LED's color values
|
|
|
|
/// @param[in] ledValues The RGB-color per LED
|
|
|
|
/// @param[in] brightness The current brightness level 1 .. 31
|
|
|
|
///
|
|
|
|
void bufferWithBrightness(std::vector<uint8_t> &txBuf, const std::vector<ColorRgb> & ledValues, const int brightness = APA102_BRIGHTNESS_MAX_LEVEL);
|
|
|
|
|
|
|
|
/// The brighness level. Possibile values 1 .. 31.
|
|
|
|
int _brightnessControlMaxLevel;
|
2014-12-01 10:04:27 +01:00
|
|
|
};
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
#endif // LEDEVICEAPA102_H
|