Publish LumaOps source

This commit is contained in:
LumaOps release export
2026-09-03 01:18:36 +02:00
commit 7f1c0e5f71
2363 changed files with 501543 additions and 0 deletions
@@ -0,0 +1,39 @@
/*---------------------------------------------------------*\
| MSIVigorControllerDetect.cpp |
| |
| Detector for MSI Vigor |
| |
| Morgan Guimard (morg) 01 Jun 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-or-later |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "MSIVigorGK30Controller.h"
#include "RGBController_MSIVigorGK30.h"
/*---------------------------------------------------------*\
| MSI vendor ID |
\*---------------------------------------------------------*/
#define MSI_VID 0x0DB0
/*---------------------------------------------------------*\
| Product ID |
\*---------------------------------------------------------*/
#define MSI_VIGOR_GK30_PID 0x0B30
void DetectMSIVigorGK30Controllers(hid_device_info* info, const std::string& name)
{
hid_device* dev = hid_open_path(info->path);
if(dev)
{
MSIVigorGK30Controller* controller = new MSIVigorGK30Controller(dev, *info, name);
RGBController_MSIVigorGK30* rgb_controller = new RGBController_MSIVigorGK30(controller);
ResourceManager::get()->RegisterRGBController(rgb_controller);
}
}
REGISTER_HID_DETECTOR_IPU("MSI Vigor GK30 controller", DetectMSIVigorGK30Controllers, MSI_VID, MSI_VIGOR_GK30_PID, 1, 0xFF01, 1);