mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
46 lines
2.0 KiB
C++
46 lines
2.0 KiB
C++
/*---------------------------------------------------------*\
|
|
| LaviewTechnologyDetect.cpp |
|
|
| |
|
|
| Detector for Laview Technology brand Mice (Glorious) |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include <hidapi.h>
|
|
#include <sstream>
|
|
#include <iomanip>
|
|
#include <string>
|
|
#include "Detector.h"
|
|
#include "LaviewTechnologyController.h"
|
|
#include "RGBController.h"
|
|
#include "RGBController_LaviewTechnology.h"
|
|
#include "LogManager.h"
|
|
|
|
#define LAVIEW_TECHNOLOGY_VID 0x22D4
|
|
|
|
#define GLORIOUS_MODEL_I_PID 0x1503 // Wired
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectLaviewTechnologyMouse *
|
|
* *
|
|
* Tests the USB address to see if a Laview Technology controller exists there. *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
static void DetectLaviewTechnologyMouse(hid_device_info* info, const std::string& name)
|
|
{
|
|
hid_device* dev = hid_open_path(info->path);
|
|
|
|
if(dev)
|
|
{
|
|
LaviewTechnologyController* controller = new LaviewTechnologyController(dev, info, name);
|
|
RGBController_LaviewTechnology* rgb_controller = new RGBController_LaviewTechnology(controller);
|
|
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
}
|
|
|
|
REGISTER_HID_DETECTOR_IPU("Glorious Model I", DetectLaviewTechnologyMouse, LAVIEW_TECHNOLOGY_VID, GLORIOUS_MODEL_I_PID, 1, 0xFF01, 0x02);
|