mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-26 08:47:50 -05:00
49 lines
1.3 KiB
C++
49 lines
1.3 KiB
C++
/*-------------------------------------------*\
|
|
| RGBController_GenesisXenon200.h |
|
|
| |
|
|
| Definitions and types for Genesis Xenon |
|
|
| 200 Mouse |
|
|
| |
|
|
| chrabonszcz 07/2023 |
|
|
\*-------------------------------------------*/
|
|
|
|
#include "GenesisXenon200Controller.h"
|
|
|
|
GenesisXenon200Controller::GenesisXenon200Controller(hid_device* dev_handle, hid_device* cmd_dev_handle, const char* path)
|
|
{
|
|
dev = dev_handle;
|
|
cmd_dev = cmd_dev_handle;
|
|
location = path;
|
|
}
|
|
|
|
GenesisXenon200Controller::~GenesisXenon200Controller()
|
|
{
|
|
|
|
}
|
|
|
|
std::string GenesisXenon200Controller::GetLocationString()
|
|
{
|
|
return("HID: " + location);
|
|
}
|
|
|
|
void GenesisXenon200Controller::SaveMode(unsigned char mode, unsigned char value, RGBColor color)
|
|
{
|
|
unsigned char usb_buf[154];
|
|
|
|
usb_buf[0] = 0x04;
|
|
|
|
hid_get_feature_report(dev, usb_buf, 154);
|
|
|
|
usb_buf[0x5D] = mode;
|
|
usb_buf[0x60] = value;
|
|
usb_buf[0x61] = RGBGetRValue(color);
|
|
usb_buf[0x62] = RGBGetGValue(color);
|
|
usb_buf[0x63] = RGBGetBValue(color);
|
|
|
|
hid_send_feature_report(dev, usb_buf, 154);
|
|
|
|
usb_buf[0] = 0x08;
|
|
hid_get_feature_report(cmd_dev, usb_buf, 9);
|
|
hid_send_feature_report(cmd_dev, usb_buf, 9);
|
|
}
|