mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-04-04 22:24:12 -04:00
Initial commit for Dream Cheeky Webmail Notifier
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| 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-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#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);
|
||||
RGBController_DreamCheeky* rgb_controller = new RGBController_DreamCheeky(controller);
|
||||
rgb_controller->name = name;
|
||||
|
||||
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
||||
}
|
||||
}
|
||||
|
||||
REGISTER_HID_DETECTOR( "Dream Cheeky Webmail Notifier", DetectDreamCheekyControllers, DREAM_CHEEKY_VID, DREAM_CHEEKY_WEBMAIL_NOTIFIER_PID );
|
||||
Reference in New Issue
Block a user