mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 07:47:49 -05:00
45 lines
2.2 KiB
C++
45 lines
2.2 KiB
C++
/*---------------------------------------------------------*\
|
|
| AOCMousematControllerDetect.cpp |
|
|
| |
|
|
| Detector for AOC mousemat |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 15 Apr 2023 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "Detector.h"
|
|
#include "AOCMousematController.h"
|
|
#include "RGBController_AOCMousemat.h"
|
|
|
|
/*-----------------------------------------------------*\
|
|
| AOC Mousemat IDs |
|
|
\*-----------------------------------------------------*/
|
|
#define AOC_VID 0x3938
|
|
#define AOC_AMM700_PID 0x1162
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectAOCMousematControllers *
|
|
* *
|
|
* Tests the USB address to see if an AOC Mousemat controller exists there. *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectAOCMousematControllers(hid_device_info* info, const std::string& name)
|
|
{
|
|
hid_device* dev = hid_open_path(info->path);
|
|
|
|
if(dev)
|
|
{
|
|
AOCMousematController* controller = new AOCMousematController(dev, info->path);
|
|
RGBController_AOCMousemat* rgb_controller = new RGBController_AOCMousemat(controller);
|
|
rgb_controller->name = name;
|
|
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
}
|
|
|
|
REGISTER_HID_DETECTOR_IPU("AOC AGON AMM700", DetectAOCMousematControllers, AOC_VID, AOC_AMM700_PID, 1, 0xFF19, 0xFF19);
|