2014-03-09 11:36:46 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// stl includes
|
|
|
|
#include <vector>
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
// libusb include
|
|
|
|
#include <libusb.h>
|
|
|
|
|
|
|
|
// Hyperion includes
|
|
|
|
#include <leddevice/LedDevice.h>
|
|
|
|
|
|
|
|
///
|
2016-10-08 13:52:22 +02:00
|
|
|
/// LedDevice implementation for a USBasp programmer with modified firmware (https://github.com/poljvd/hyperion-usbasp)
|
2014-03-09 11:36:46 +01:00
|
|
|
///
|
|
|
|
class LedDeviceHyperionUsbasp : public LedDevice
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Commands to the Device
|
|
|
|
enum Commands {
|
|
|
|
CMD_WRITE_WS2801 = 10,
|
|
|
|
CMD_WRITE_WS2812 = 11
|
|
|
|
};
|
|
|
|
|
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// Constructs specific LedDevice
|
2014-03-09 11:36:46 +01:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @param deviceConfig json device config
|
|
|
|
///
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceHyperionUsbasp(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Sets configuration
|
|
|
|
///
|
|
|
|
/// @param deviceConfig the json device config
|
|
|
|
/// @return true if success
|
2016-10-13 21:59:58 +02:00
|
|
|
bool init(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
|
|
|
/// constructs leddevice
|
2016-10-13 21:59:58 +02:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2014-03-09 11:36:46 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Destructor of the LedDevice; closes the output device if it is open
|
|
|
|
///
|
|
|
|
virtual ~LedDeviceHyperionUsbasp();
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Opens and configures the output device
|
|
|
|
///
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
|
|
|
int open();
|
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
protected:
|
2014-03-09 11:36:46 +01:00
|
|
|
///
|
|
|
|
/// 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);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Test if the device is a Hyperion Usbasp device
|
|
|
|
///
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
|
|
|
int testAndOpen(libusb_device * device);
|
|
|
|
|
|
|
|
static libusb_device_handle * openDevice(libusb_device * device);
|
|
|
|
|
2017-03-04 22:17:42 +01:00
|
|
|
static QString getString(libusb_device * device, int stringDescriptorIndex);
|
2014-03-09 11:36:46 +01:00
|
|
|
|
|
|
|
/// command to write the leds
|
2016-08-23 20:07:12 +02:00
|
|
|
uint8_t _writeLedsCommand;
|
2014-03-09 11:36:46 +01:00
|
|
|
|
|
|
|
/// libusb context
|
|
|
|
libusb_context * _libusbContext;
|
|
|
|
|
|
|
|
/// libusb device handle
|
|
|
|
libusb_device_handle * _deviceHandle;
|
|
|
|
|
|
|
|
/// Usb device identifiers
|
2016-08-14 10:46:44 +02:00
|
|
|
static uint16_t _usbVendorId;
|
|
|
|
static uint16_t _usbProductId;
|
2017-03-04 22:17:42 +01:00
|
|
|
static QString _usbProductDescription;
|
2014-03-09 11:36:46 +01:00
|
|
|
};
|