mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-17 11:37:49 -05:00
25 lines
1.0 KiB
C++
25 lines
1.0 KiB
C++
/*---------------------------------------------------------*\
|
|
| WootingV2KeyboardController.h |
|
|
| |
|
|
| Driver for Wooting keyboards with v2 firmware |
|
|
| |
|
|
| Chris M (Dr_No) 09 Jul 2021 |
|
|
| Diogo Trindade (diogotr7) 25 Dec 2025 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "WootingKeyboardController.h"
|
|
|
|
class WootingV2KeyboardController : public WootingKeyboardController
|
|
{
|
|
public:
|
|
WootingV2KeyboardController(hid_device* dev_handle, const char *path, WOOTING_DEVICE_TYPE wooting_type, std::string dev_name);
|
|
~WootingV2KeyboardController();
|
|
|
|
void SendDirect(RGBColor* colors, uint8_t colour_count);
|
|
};
|