mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Updated comments in led device headers (#265)
This commit is contained in:
parent
5aac2be702
commit
b42f3453b4
@ -12,7 +12,7 @@
|
||||
#include <leddevice/LedDevice.h>
|
||||
|
||||
///
|
||||
/// LedDevice implementation for a lightpack device (http://code.google.com/p/light-pack/)
|
||||
/// LedDevice implementation for a USBasp programmer with modified firmware (https://github.com/poljvd/hyperion-usbasp)
|
||||
///
|
||||
class LedDeviceHyperionUsbasp : public LedDevice
|
||||
{
|
||||
|
@ -3,6 +3,10 @@
|
||||
// Hyperion-Leddevice includes
|
||||
#include <leddevice/LedDevice.h>
|
||||
|
||||
///
|
||||
/// Implementation of the LedDevice interface for writing to pi-blaster based PWM LEDs
|
||||
///
|
||||
|
||||
class LedDevicePiBlaster : public LedDevice
|
||||
{
|
||||
public:
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "ProviderSpi.h"
|
||||
|
||||
///
|
||||
/// Implementation of the LedDevice interface for writing to Sk6801 led device.
|
||||
/// Implementation of the LedDevice interface for writing to Sk6801 led device via SPI.
|
||||
///
|
||||
class LedDeviceSk6812SPI : public ProviderSpi
|
||||
{
|
||||
|
@ -6,7 +6,7 @@
|
||||
#define TPM2_DEFAULT_PORT 65506
|
||||
|
||||
///
|
||||
/// Implementation of the LedDevice interface for sending led colors via udp/E1.31 packets
|
||||
/// Implementation of the LedDevice interface for sending led colors via udp tpm2.net packets
|
||||
///
|
||||
class LedDeviceTpm2net : public ProviderUdp
|
||||
{
|
||||
|
@ -127,7 +127,7 @@ struct dma_cb_t
|
||||
};
|
||||
|
||||
///
|
||||
/// Implementation of the LedDevice interface for writing to Ws2801 led device.
|
||||
/// Implementation of the LedDevice interface for writing to Ws2812 led device using pwm.
|
||||
///
|
||||
class LedDeviceWS2812b : public LedDevice
|
||||
{
|
||||
|
@ -3,6 +3,9 @@
|
||||
#include <leddevice/LedDevice.h>
|
||||
#include <ws2811.h>
|
||||
|
||||
///
|
||||
/// Implementation of the LedDevice interface for writing to Ws2812 led device via pwm.
|
||||
///
|
||||
class LedDeviceWS281x : public LedDevice
|
||||
{
|
||||
public:
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "ProviderSpi.h"
|
||||
|
||||
///
|
||||
/// Implementation of the LedDevice interface for writing to Ws2801 led device.
|
||||
/// Implementation of the LedDevice interface for writing to Ws2812 led device via spi.
|
||||
///
|
||||
class LedDeviceWs2812SPI : public ProviderSpi
|
||||
{
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <utils/Logger.h>
|
||||
|
||||
///
|
||||
/// The ProviderUdp implements an abstract base-class for LedDevices using the SPI-device.
|
||||
/// The ProviderUdp implements an abstract base-class for LedDevices using UDP packets.
|
||||
///
|
||||
class ProviderUdp : public LedDevice
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user