2020-07-12 20:27:56 +02:00
|
|
|
#ifndef LEDEVICEHYPERIONUSBASP_H
|
|
|
|
#define LEDEVICEHYPERIONUSBASP_H
|
2014-03-09 11:36:46 +01:00
|
|
|
|
|
|
|
// 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
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
explicit LedDeviceHyperionUsbasp(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Sets configuration
|
|
|
|
///
|
2020-07-12 20:27:56 +02:00
|
|
|
/// @para#endif // LEDEVICETEMPLATE_Hm deviceConfig the json device config
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @return true if success
|
2020-02-10 15:21:58 +01:00
|
|
|
bool init(const QJsonObject &deviceConfig) override;
|
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
|
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
~LedDeviceHyperionUsbasp() override;
|
2014-03-09 11:36:46 +01:00
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
public slots:
|
|
|
|
///
|
|
|
|
/// Closes the output device.
|
|
|
|
/// Includes switching-off the device and stopping refreshes
|
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
int close() override;
|
2020-02-10 15:21:58 +01:00
|
|
|
|
|
|
|
protected:
|
2014-03-09 11:36:46 +01:00
|
|
|
///
|
|
|
|
/// Opens and configures the output device
|
|
|
|
///
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
int open() override;
|
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
|
|
|
|
///
|
2020-08-08 23:12:43 +02:00
|
|
|
int write(const std::vector<ColorRgb>& ledValues) override;
|
2014-03-09 11:36:46 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// 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;
|
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
/// libusb device
|
|
|
|
libusb_device * _device;
|
|
|
|
|
2014-03-09 11:36:46 +01:00
|
|
|
/// libusb device handle
|
|
|
|
libusb_device_handle * _deviceHandle;
|
|
|
|
};
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
#endif // LEDEVICEHYPERIONUSBASP_H
|