2014-12-01 10:04:27 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
// hyperion incluse
|
|
|
|
#include "LedSpiDevice.h"
|
2016-08-23 20:07:12 +02:00
|
|
|
#include <json/json.h>
|
2014-12-01 10:04:27 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to APA102 led device.
|
|
|
|
///
|
|
|
|
class LedDeviceAPA102 : public LedSpiDevice
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// Constructs specific LedDevice
|
2014-12-01 10:04:27 +01:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @param deviceConfig json device config
|
2014-12-01 10:04:27 +01:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDeviceAPA102(const Json::Value &deviceConfig);
|
|
|
|
|
|
|
|
/// constructs leddevice
|
|
|
|
static LedDevice* construct(const Json::Value &deviceConfig);
|
2016-05-10 12:16:19 +02:00
|
|
|
|
2014-12-01 10:04:27 +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);
|
|
|
|
|
|
|
|
/// Switch the leds off
|
|
|
|
virtual int switchOff();
|
|
|
|
};
|