mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-01 03:37:49 -05:00
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/*-----------------------------------------*\
|
|
| RGBController_HyperXKeyboard.h |
|
|
| |
|
|
| Generic RGB Interface for HyperX RGB |
|
|
| Keyboard |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 2/2/2020 |
|
|
\*-----------------------------------------*/
|
|
|
|
#pragma once
|
|
#include <atomic>
|
|
#include <chrono>
|
|
#include <thread>
|
|
|
|
#include "RGBController.h"
|
|
#include "HyperXKeyboardController.h"
|
|
|
|
class RGBController_HyperXKeyboard : public RGBController
|
|
{
|
|
public:
|
|
RGBController_HyperXKeyboard(HyperXKeyboardController* hyperx_ptr);
|
|
~RGBController_HyperXKeyboard();
|
|
|
|
void SetupZones();
|
|
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void SetCustomMode();
|
|
void DeviceUpdateMode();
|
|
|
|
void KeepaliveThreadFunction();
|
|
|
|
private:
|
|
HyperXKeyboardController* hyperx;
|
|
std::atomic<bool> keepalive_thread_run;
|
|
std::thread* keepalive_thread;
|
|
std::chrono::time_point<std::chrono::steady_clock> last_update_time;
|
|
};
|