Publish LumaOps source
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| 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);
|
||||
Reference in New Issue
Block a user