mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-02 04:07:48 -05:00
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
/*------------------------------------------*\
|
|
| RGBController_SinowealthKeyboard.h |
|
|
| |
|
|
| Definitions and types for Sinowealth |
|
|
| Keyboard, Hopefully generic, this was |
|
|
| made spefically for FL eSports F11 KB |
|
|
| |
|
|
| Dmitri Kalinichenko (Dima-Kal) 23/06/2021 |
|
|
\*-----------------------------------------=*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "SinowealthKeyboardController.h"
|
|
|
|
class RGBController_SinowealthKeyboard : public RGBController
|
|
{
|
|
public:
|
|
RGBController_SinowealthKeyboard(SinowealthKeyboardController* sinowealth_ptr);
|
|
~RGBController_SinowealthKeyboard();
|
|
|
|
void SetupZones();
|
|
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void SetCustomMode();
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
private:
|
|
SinowealthKeyboardController* sinowealth;
|
|
};
|