mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-28 17:01:09 -05:00
21 lines
361 B
C++
21 lines
361 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <hidapi/hidapi.h>
|
|
|
|
#include "RGBController.h"
|
|
|
|
class HIDLampArrayController
|
|
{
|
|
public:
|
|
HIDLampArrayController(hid_device *dev_handle, const char *path);
|
|
~HIDLampArrayController();
|
|
|
|
std::string GetDeviceLocation();
|
|
std::string GetSerialString();
|
|
|
|
private:
|
|
hid_device *dev;
|
|
std::string location;
|
|
};
|