mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 07:47:49 -05:00
41 lines
1.8 KiB
C++
41 lines
1.8 KiB
C++
/*---------------------------------------------------------*\
|
|
| GigabyteAorusMouseControllerDetect.cpp |
|
|
| |
|
|
| Detector for Gigabyte Aorus mouse |
|
|
| |
|
|
| Morgan Guimard (morg) 29 Dec 2022 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "Detector.h"
|
|
#include "hidapi.h"
|
|
#include "GigabyteAorusMouseController.h"
|
|
#include "RGBController_GigabyteAorusMouse.h"
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Vendor ID |
|
|
\*-----------------------------------------------------*/
|
|
#define HOLTEK_VID 0x1044
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Controller product ids |
|
|
\*-----------------------------------------------------*/
|
|
#define AORUS_M2_PID 0x7A40
|
|
|
|
void DetectGigabyteAorusMouseControllers(hid_device_info* info, const std::string& name)
|
|
{
|
|
hid_device* dev = hid_open_path(info->path);
|
|
|
|
if(dev)
|
|
{
|
|
GigabyteAorusMouseController* controller = new GigabyteAorusMouseController(dev, *info, name);
|
|
RGBController_GigabyteAorusMouse* rgb_controller = new RGBController_GigabyteAorusMouse(controller);
|
|
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
}
|
|
|
|
REGISTER_HID_DETECTOR_IPU("Gigabyte Aorus M2", DetectGigabyteAorusMouseControllers, HOLTEK_VID, AORUS_M2_PID, 3, 0xFF01, 0x01);
|