mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 15:57:50 -05:00
35 lines
1.4 KiB
C++
35 lines
1.4 KiB
C++
/*---------------------------------------------------------*\
|
|
| ViewSonicControllerDetect.cpp |
|
|
| |
|
|
| Detector for ViewSonic XG270QG |
|
|
| |
|
|
| Lanzaa 23 Jan 2022 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include <hidapi.h>
|
|
#include "Detector.h"
|
|
#include "VS_XG270QG_Controller.h"
|
|
#include "RGBController_XG270QG.h"
|
|
|
|
#define VIEWSONIC_VID 0x0416
|
|
#define VS_XG270QG_PID 0x5020
|
|
|
|
void DetectViewSonic(hid_device_info* info, const std::string& name)
|
|
{
|
|
hid_device* dev = hid_open_path(info->path);
|
|
|
|
if (dev)
|
|
{
|
|
VS_XG270QG_Controller* controller = new VS_XG270QG_Controller(dev, info->path);
|
|
RGBController_XG270QG* rgb_controller = new RGBController_XG270QG(controller);
|
|
rgb_controller->name = name;
|
|
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
}
|
|
|
|
REGISTER_HID_DETECTOR_IPU("ViewSonic Monitor XG270QG", DetectViewSonic, VIEWSONIC_VID, VS_XG270QG_PID, 0, 0xFF00, 1);
|