mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
40 lines
1.7 KiB
C++
40 lines
1.7 KiB
C++
/*---------------------------------------------------------*\
|
|
| DreamCheekyControllerDetect.cpp |
|
|
| |
|
|
| Detector for Dream Cheeky devices |
|
|
| |
|
|
| Adam Honse (calcprogrammer1@gmail.com) 06 Sep 2024 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "Detector.h"
|
|
#include "DreamCheekyController.h"
|
|
#include "RGBController_DreamCheeky.h"
|
|
|
|
/*---------------------------------------------------------*\
|
|
| Dream Cheeky USB Vendor ID |
|
|
\*---------------------------------------------------------*/
|
|
#define DREAM_CHEEKY_VID 0x1D34
|
|
|
|
/*---------------------------------------------------------*\
|
|
| Dream Cheeky USB Product ID |
|
|
\*---------------------------------------------------------*/
|
|
#define DREAM_CHEEKY_WEBMAIL_NOTIFIER_PID 0x0004
|
|
|
|
void DetectDreamCheekyControllers(hid_device_info* info, const std::string& name)
|
|
{
|
|
hid_device* dev = hid_open_path(info->path);
|
|
|
|
if(dev)
|
|
{
|
|
DreamCheekyController* controller = new DreamCheekyController(dev, info->path, name);
|
|
RGBController_DreamCheeky* rgb_controller = new RGBController_DreamCheeky(controller);
|
|
|
|
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
|
}
|
|
}
|
|
|
|
REGISTER_HID_DETECTOR( "Dream Cheeky Webmail Notifier", DetectDreamCheekyControllers, DREAM_CHEEKY_VID, DREAM_CHEEKY_WEBMAIL_NOTIFIER_PID );
|