mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
41 lines
2.1 KiB
C++
41 lines
2.1 KiB
C++
/*---------------------------------------------------------*\
|
|
| IntelArcA770LEControllerDetect.cpp |
|
|
| |
|
|
| Detector for Intel Arc A770 LE |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 01 Nov 2022 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include <hidapi.h>
|
|
#include "Detector.h"
|
|
#include "IntelArcA770LEController.h"
|
|
#include "RGBController_IntelArcA770LE.h"
|
|
|
|
#define INTEL_ARC_A770_LIMITED_EDITION_VID 0x2516
|
|
#define INTEL_ARC_A770_LIMITED_EDITION_PID 0x01B5
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectIntelArcA770LEControllers *
|
|
* *
|
|
* Tests the USB address to see if an Intel Arc A770 LE controller exists there. *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectIntelArcA770LEControllers(hid_device_info* info, const std::string&)
|
|
{
|
|
hid_device* dev = hid_open_path(info->path);
|
|
if( dev )
|
|
{
|
|
IntelArcA770LEController* controller = new IntelArcA770LEController(dev, info->path);
|
|
RGBController_IntelArcA770LE* rgb_controller = new RGBController_IntelArcA770LE(controller);
|
|
// Constructor sets the name
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
}
|
|
|
|
REGISTER_HID_DETECTOR_IP("Intel Arc A770 Limited Edition", DetectIntelArcA770LEControllers, INTEL_ARC_A770_LIMITED_EDITION_VID, INTEL_ARC_A770_LIMITED_EDITION_PID, 1, 0xFF00);
|