2014-01-15 17:54:10 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// hyperion include
|
2016-08-28 07:12:48 +02:00
|
|
|
#include "ProviderSpi.h"
|
2014-01-15 17:54:10 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to P9813 led device.
|
|
|
|
///
|
2016-08-28 07:12:48 +02:00
|
|
|
class LedDeviceP9813 : public ProviderSpi
|
2014-01-15 17:54:10 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// Constructs specific LedDevice
|
2014-01-15 17:54:10 +01:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @param deviceConfig json device config
|
2014-01-15 17:54:10 +01:00
|
|
|
///
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceP9813(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
|
|
|
/// constructs leddevice
|
2016-10-13 21:59:58 +02:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2014-01-15 17:54:10 +01:00
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
virtual bool init(const QJsonObject &deviceConfig);
|
2016-10-08 08:14:36 +02:00
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
private:
|
2014-01-15 17:54:10 +01:00
|
|
|
///
|
|
|
|
/// Writes the led color values to the led-device
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
|
|
|
virtual int write(const std::vector<ColorRgb> &ledValues);
|
|
|
|
|
2014-01-18 23:49:32 +01:00
|
|
|
///
|
|
|
|
/// Calculates the required checksum for one led
|
|
|
|
///
|
|
|
|
/// @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
|
|
|
};
|