mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 07:47:49 -05:00
58 lines
3.0 KiB
C++
58 lines
3.0 KiB
C++
/*---------------------------------------------------------*\
|
|
| AnnePro2ControllerDetect.cpp |
|
|
| |
|
|
| Detector for Obins Lab AnnePro2 keyboard |
|
|
| |
|
|
| Sergey Gavrilov (DrZlo13) 06 Jun 2021 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "Detector.h"
|
|
#include "AnnePro2Controller.h"
|
|
#include "RGBController_AnnePro2.h"
|
|
#include <hidapi.h>
|
|
|
|
/*---------------------------------------------------------*\
|
|
| Anne Pro 2 vendor IDs |
|
|
\*---------------------------------------------------------*/
|
|
#define ANNE_PRO_2_VID_1 0x04D9
|
|
#define ANNE_PRO_2_VID_2 0x3311
|
|
|
|
/*---------------------------------------------------------*\
|
|
| Anne Pro 2 product IDs |
|
|
\*---------------------------------------------------------*/
|
|
#define ANNE_PRO_2_PID_1 0x8008
|
|
#define ANNE_PRO_2_PID_2 0x8009
|
|
#define ANNE_PRO_2_PID_3 0xA292
|
|
#define ANNE_PRO_2_PID_4 0xA293
|
|
#define ANNE_PRO_2_PID_5 0xA297
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectAnnePro2Controllers *
|
|
* *
|
|
* Tests the USB address to see if an Obins Lab AnnePro2 keyboard exists there. *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectAnnePro2Controllers(hid_device_info* info, const std::string&)
|
|
{
|
|
hid_device* dev = hid_open_path(info->path);
|
|
|
|
if(dev)
|
|
{
|
|
AnnePro2Controller* controller = new AnnePro2Controller(dev, info->path);
|
|
RGBController_AnnePro2* rgb_controller = new RGBController_AnnePro2(controller);
|
|
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
}
|
|
|
|
REGISTER_HID_DETECTOR_I("Anne Pro 2", DetectAnnePro2Controllers, ANNE_PRO_2_VID_1, ANNE_PRO_2_PID_1, 1);
|
|
REGISTER_HID_DETECTOR_I("Anne Pro 2", DetectAnnePro2Controllers, ANNE_PRO_2_VID_1, ANNE_PRO_2_PID_2, 1);
|
|
REGISTER_HID_DETECTOR_I("Anne Pro 2", DetectAnnePro2Controllers, ANNE_PRO_2_VID_1, ANNE_PRO_2_PID_3, 1);
|
|
REGISTER_HID_DETECTOR_I("Anne Pro 2", DetectAnnePro2Controllers, ANNE_PRO_2_VID_1, ANNE_PRO_2_PID_4, 1);
|
|
REGISTER_HID_DETECTOR_I("Anne Pro 2", DetectAnnePro2Controllers, ANNE_PRO_2_VID_2, ANNE_PRO_2_PID_5, 1);
|