mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-30 18:57:52 -05:00
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
/*---------------------------------------------------------*\
|
|
| HYTEKeyboardController.h |
|
|
| |
|
|
| Driver for HYTE keyboard |
|
|
| |
|
|
| Adam Honse (calcprogrammer1@gmail.com) 30 Oct 2024 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <hidapi.h>
|
|
#include "RGBController.h"
|
|
|
|
enum
|
|
{
|
|
HYTE_KEYBOARD_ZONE_KEYBOARD,
|
|
HYTE_KEYBOARD_ZONE_SURROUND
|
|
};
|
|
|
|
class HYTEKeyboardController
|
|
{
|
|
public:
|
|
HYTEKeyboardController(hid_device* dev_handle, const char* path);
|
|
~HYTEKeyboardController();
|
|
|
|
std::string GetDeviceLocation();
|
|
|
|
void LEDStreaming(unsigned int zone, RGBColor* colors);
|
|
|
|
private:
|
|
hid_device* dev;
|
|
std::string location;
|
|
|
|
void LEDStreaming_Keyboard(RGBColor* colors);
|
|
void LEDStreaming_Surround(RGBColor* colors);
|
|
};
|