mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
42 lines
2.0 KiB
C++
42 lines
2.0 KiB
C++
/*---------------------------------------------------------*\
|
|
| ZalmanZSyncControllerDetect.cpp |
|
|
| |
|
|
| Detector for Zalman Z Sync |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 30 Jan 2021 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include <hidapi.h>
|
|
#include "Detector.h"
|
|
#include "ZalmanZSyncController.h"
|
|
#include "RGBController_ZalmanZSync.h"
|
|
|
|
#define ZALMAN_VID 0x1C57
|
|
#define ZALMAN_Z_SYNC_PID 0x7ED0
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectZalmanZSyncControllers *
|
|
* *
|
|
* Detect devices supported by the Zalman Z Sync driver *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectZalmanZSyncControllers(hid_device_info* info, const std::string& name)
|
|
{
|
|
hid_device* dev = hid_open_path(info->path);
|
|
|
|
if(dev)
|
|
{
|
|
ZalmanZSyncController* controller = new ZalmanZSyncController(dev, info->path, name);
|
|
RGBController_ZalmanZSync* rgb_controller = new RGBController_ZalmanZSync(controller);
|
|
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
} /* DetectZalmanZSyncControllers() */
|
|
|
|
REGISTER_HID_DETECTOR("Zalman Z Sync", DetectZalmanZSyncControllers, ZALMAN_VID, ZALMAN_Z_SYNC_PID);
|