Add Keychron keyboards support - Closes #1790
This commit is contained in:
parent
ae1c73497a
commit
ae84bcb862
6 changed files with 1150 additions and 0 deletions
|
|
@ -0,0 +1,31 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_KeychronKeyboard.h |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB |
|
||||
| Keychron Keyboard RGB USB Driver |
|
||||
| |
|
||||
| Guimard Morgan (morg) 2/20/2022 |
|
||||
\*-----------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
#include "KeychronKeyboardController.h"
|
||||
|
||||
class RGBController_KeychronKeyboard : public RGBController
|
||||
{
|
||||
public:
|
||||
RGBController_KeychronKeyboard(KeychronKeyboardController* controller_ptr);
|
||||
~RGBController_KeychronKeyboard();
|
||||
|
||||
void SetupZones();
|
||||
void ResizeZone(int zone, int new_size);
|
||||
void DeviceUpdateLEDs();
|
||||
void UpdateZoneLEDs(int zone);
|
||||
void UpdateSingleLED(int led);
|
||||
void DeviceUpdateMode();
|
||||
void SetCustomMode();
|
||||
|
||||
private:
|
||||
KeychronKeyboardController* controller;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue