mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-25 16:27:50 -05:00
Commit amended to undo change to device list management, still working through that merge request. Want to work this one in first. Changes by Adam Honse <calcprogrammer1@gmail.com>
32 lines
1.5 KiB
C++
32 lines
1.5 KiB
C++
#include "Detector.h"
|
|
#include "MSI3ZoneController.h"
|
|
#include "RGBController.h"
|
|
#include "RGBController_MSI3Zone.h"
|
|
#include <hidapi/hidapi.h>
|
|
|
|
#define MSI_3_ZONE_KEYBOARD_VID 0x1770
|
|
#define MSI_3_ZONE_KEYBOARD_PID 0xFF00
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectMSI3ZoneControllers *
|
|
* *
|
|
* Tests the USB address to see if an MSI/SteelSeries 3-zone Keyboard controller *
|
|
* exists there. *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectMSI3ZoneControllers(hid_device_info* info, const std::string&)
|
|
{
|
|
hid_device* dev = hid_open_path(info->path);
|
|
if( dev )
|
|
{
|
|
MSI3ZoneController* controller = new MSI3ZoneController(dev, info->path);
|
|
RGBController_MSI3Zone* rgb_controller = new RGBController_MSI3Zone(controller);
|
|
// Constructor sets the name
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
} /* DetectMSI3ZoneControllers() */
|
|
|
|
REGISTER_HID_DETECTOR("MSI 3-Zone Laptop", DetectMSI3ZoneControllers, MSI_3_ZONE_KEYBOARD_VID, MSI_3_ZONE_KEYBOARD_PID);
|