mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
b63753f5dc
Former-commit-id: 26cab1b85b00406240689ad9c1018f0307028fe4
60 lines
1004 B
C++
60 lines
1004 B
C++
#pragma once
|
|
|
|
// STL includes
|
|
#include <vector>
|
|
|
|
// libusb include
|
|
#include <hidapi/hidapi.h>
|
|
|
|
// Hyperion includes
|
|
#include <leddevice/LedDevice.h>
|
|
|
|
///
|
|
/// LedDevice implementation for a paintpack device ()
|
|
///
|
|
class LedDevicePaintpack : public LedDevice
|
|
{
|
|
public:
|
|
/**
|
|
* Constructs the paintpack device
|
|
*/
|
|
LedDevicePaintpack();
|
|
|
|
/**
|
|
* Destructs the paintpack device, closes USB connection if open
|
|
*/
|
|
virtual ~LedDevicePaintpack();
|
|
|
|
/**
|
|
* Opens the Paintpack device
|
|
*
|
|
* @return Zero on succes else negative
|
|
*/
|
|
int open();
|
|
|
|
///
|
|
/// Writes the RGB-Color values to the leds.
|
|
///
|
|
/// @param[in] ledValues The RGB-color per led
|
|
///
|
|
/// @return Zero on success else negative
|
|
///
|
|
virtual int write(const std::vector<ColorRgb>& ledValues);
|
|
|
|
///
|
|
/// Switch the leds off
|
|
///
|
|
/// @return Zero on success else negative
|
|
///
|
|
virtual int switchOff();
|
|
|
|
private:
|
|
/// libusb device handle
|
|
hid_device * _deviceHandle;
|
|
|
|
/// buffer for led data
|
|
std::vector<uint8_t> _ledBuffer;
|
|
|
|
|
|
};
|