mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-30 18:57:52 -05:00
38 lines
1.8 KiB
C++
38 lines
1.8 KiB
C++
#include "Detector.h"
|
|
#include "ZalmanZSyncController.h"
|
|
#include "RGBController.h"
|
|
#include "RGBController_ZalmanZSync.h"
|
|
#include <vector>
|
|
#include <hidapi/hidapi.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);
|
|
RGBController_ZalmanZSync* rgb_controller = new RGBController_ZalmanZSync(controller);
|
|
rgb_controller->name = name;
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
} /* DetectZalmanZSyncControllers() */
|
|
|
|
/*-----------------------------------------------------------------*\
|
|
| Disable due to bricking. Bricking may not be caused by OpenRGB |
|
|
| as reports of bricking in the official software are common. Seems|
|
|
| to be a bug in the firmware, but I want to investigate further |
|
|
\*-----------------------------------------------------------------*/
|
|
//REGISTER_HID_DETECTOR("Zalman Z Sync", DetectZalmanZSyncControllers, ZALMAN_VID, ZALMAN_Z_SYNC_PID);
|