2013-07-26 22:38:34 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
// hyperion incluse
|
2016-08-28 07:12:48 +02:00
|
|
|
#include "ProviderSpi.h"
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to Ws2801 led device.
|
|
|
|
///
|
2016-08-28 07:12:48 +02:00
|
|
|
class LedDeviceWs2801 : public ProviderSpi
|
2013-07-26 22:38:34 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// Constructs specific LedDevice
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @param deviceConfig json device config
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDeviceWs2801(const Json::Value &deviceConfig);
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
/// constructs leddevice
|
|
|
|
static LedDevice* construct(const Json::Value &deviceConfig);
|
2016-02-13 13:00:31 +01:00
|
|
|
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
|
|
|
/// Writes the led color values to the led-device
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
2013-11-11 10:00:37 +01:00
|
|
|
virtual int write(const std::vector<ColorRgb> &ledValues);
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2013-10-27 18:04:37 +01:00
|
|
|
/// Switch the leds off
|
|
|
|
virtual int switchOff();
|
2013-07-26 22:38:34 +02:00
|
|
|
};
|