2016-05-26 23:44:27 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Local hyperion incluse
|
2016-08-28 07:12:48 +02:00
|
|
|
#include "ProviderSpi.h"
|
2016-05-26 23:44:27 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to LDP6803 led device.
|
|
|
|
///
|
|
|
|
/// 00000000 00000000 00000000 00000000 1RRRRRGG GGGBBBBB 1RRRRRGG GGGBBBBB ...
|
|
|
|
/// |---------------------------------| |---------------| |---------------|
|
|
|
|
/// 32 zeros to start the frame Led1 Led2 ...
|
|
|
|
///
|
|
|
|
/// For each led, the first bit is always 1, and then you have 5 bits each for red, green and blue
|
|
|
|
/// (R, G and B in the above illustration) making 16 bits per led. Total bytes = 4 + (2 x number of
|
|
|
|
/// leds)
|
|
|
|
///
|
2016-08-28 07:12:48 +02:00
|
|
|
class LedDeviceLpd6803 : public ProviderSpi
|
2016-05-26 23:44:27 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// Constructs specific LedDevice
|
2016-05-26 23:44:27 +02:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @param deviceConfig json device config
|
2016-05-26 23:44:27 +02:00
|
|
|
///
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceLpd6803(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);
|
2016-05-26 23:44:27 +02: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:
|
2016-05-26 23:44:27 +02: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);
|
|
|
|
};
|