Add VSG Mintaka keyboard
This commit is contained in:
parent
7dcdef28c8
commit
d7e467a37f
8 changed files with 986 additions and 161 deletions
|
|
@ -0,0 +1,40 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| MintakaKeyboardControllerDetect.cpp |
|
||||
| |
|
||||
| Driver for VSG Mintaka Devices keyboard lighting |
|
||||
| Based on KeychronKeyboardController |
|
||||
| |
|
||||
| Federico Scodelaro (pudymody) 08 Oct 2024 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
#include "Detector.h"
|
||||
#include "MintakaKeyboardController.h"
|
||||
#include "RGBController.h"
|
||||
#include "RGBController_MintakaKeyboard.h"
|
||||
|
||||
/*---------------------------------------------------------*\
|
||||
| MintakaKeyboard vendor ID |
|
||||
\*---------------------------------------------------------*/
|
||||
#define MINTAKA_KEYBOARD_VID 0x05AC
|
||||
|
||||
/*---------------------------------------------------------*\
|
||||
| Product ID |
|
||||
\*---------------------------------------------------------*/
|
||||
#define VSG_MINTAKA_PID 0x0256
|
||||
|
||||
void DetectMintakaKeyboardControllers(hid_device_info* info, const std::string& name)
|
||||
{
|
||||
hid_device* dev = hid_open_path(info->path);
|
||||
|
||||
if(dev)
|
||||
{
|
||||
MintakaKeyboardController* controller = new MintakaKeyboardController(dev, *info);
|
||||
RGBController_MintakaKeyboard* rgb_controller = new RGBController_MintakaKeyboard(controller);
|
||||
rgb_controller->name = name;
|
||||
ResourceManager::get()->RegisterRGBController(rgb_controller);
|
||||
}
|
||||
}
|
||||
|
||||
REGISTER_HID_DETECTOR_IPU("VSG Mintaka", DetectMintakaKeyboardControllers, MINTAKA_KEYBOARD_VID, VSG_MINTAKA_PID, 0, 0x0001, 0x06);
|
||||
Loading…
Add table
Add a link
Reference in a new issue