2018-03-01 07:31:04 +01:00
|
|
|
#pragma once
|
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
// hyperion inclusdes
|
2018-03-01 07:31:04 +01:00
|
|
|
#include "ProviderSpi.h"
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to APA104 led device via spi.
|
|
|
|
///
|
|
|
|
class LedDeviceAPA104 : public ProviderSpi
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
/// Constructs specific LedDevice
|
|
|
|
///
|
|
|
|
/// @param deviceConfig json device config
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
explicit LedDeviceAPA104(const QJsonObject &deviceConfig);
|
2018-03-01 07:31:04 +01:00
|
|
|
|
|
|
|
/// constructs leddevice
|
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Sets configuration
|
|
|
|
///
|
|
|
|
/// @param deviceConfig the json device config
|
|
|
|
/// @return true if success
|
2020-02-10 15:21:58 +01:00
|
|
|
virtual bool init(const QJsonObject &deviceConfig) override;
|
2018-03-01 07:31:04 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
/// Writes the led color values to the led-device
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
virtual int write(const std::vector<ColorRgb> &ledValues) override;
|
2018-03-01 07:31:04 +01:00
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
const int SPI_BYTES_PER_COLOUR;
|
2018-03-01 07:31:04 +01:00
|
|
|
const int SPI_FRAME_END_LATCH_BYTES;
|
|
|
|
|
|
|
|
uint8_t bitpair_to_byte[4];
|
|
|
|
};
|