2020-07-12 20:27:56 +02:00
|
|
|
#ifndef LEDEVICEP9813_H
|
|
|
|
#define LEDEVICEP9813_H
|
2014-01-15 17:54:10 +01:00
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
// hyperion includes
|
2016-08-28 07:12:48 +02:00
|
|
|
#include "ProviderSpi.h"
|
2014-01-15 17:54:10 +01:00
|
|
|
|
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// Implementation of the LedDevice interface for writing to P9813 LED-device.
|
2014-01-15 17:54:10 +01:00
|
|
|
///
|
2016-08-28 07:12:48 +02:00
|
|
|
class LedDeviceP9813 : public ProviderSpi
|
2014-01-15 17:54:10 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @brief Constructs a P9813 LED-device
|
2014-01-15 17:54:10 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @param deviceConfig Device's configuration as JSON-Object
|
2014-01-15 17:54:10 +01:00
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
explicit LedDeviceP9813(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);
|
2014-01-15 17:54:10 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
private:
|
|
|
|
|
2020-02-10 15:21:58 +01: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-02-10 15:21:58 +01:00
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
bool init(const QJsonObject &deviceConfig) override;
|
2016-10-08 08:14:36 +02:00
|
|
|
|
2014-01-15 17:54:10 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @brief Writes the RGB-Color values to the LEDs.
|
2014-01-15 17:54:10 +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-01-15 17:54:10 +01:00
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
int write(const std::vector<ColorRgb> & ledValues) override;
|
2014-01-15 17:54:10 +01:00
|
|
|
|
2014-01-18 23:49:32 +01:00
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// Calculates the required checksum for one LED
|
2014-01-18 23:49:32 +01:00
|
|
|
///
|
|
|
|
/// @param color The color of the led
|
|
|
|
/// @return The checksum for the led
|
|
|
|
///
|
|
|
|
uint8_t calculateChecksum(const ColorRgb & color) const;
|
2014-01-15 17:54:10 +01:00
|
|
|
};
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
#endif // LEDEVICEP9813_H
|