Publish LumaOps source

This commit is contained in:
LumaOps release export
2026-09-03 01:18:36 +02:00
commit 7f1c0e5f71
2363 changed files with 501543 additions and 0 deletions
@@ -0,0 +1,24 @@
/*---------------------------------------------------------*\
| 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);
};