mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-01 11:47:56 -05:00
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
/*------------------------------------------*\
|
|
| RGBController_HyperXAlloyOriginsCore.h |
|
|
| |
|
|
| Generic RGB Interface for HyperX Alloy |
|
|
| Origins Core RGB Keyboard |
|
|
| |
|
|
| Volodymyr Nazarchuk (Vavooon) 4/28/2021 |
|
|
\*------------------------------------------*/
|
|
|
|
#pragma once
|
|
#include <chrono>
|
|
|
|
#include "RGBController.h"
|
|
#include "HyperXAlloyOriginsCoreController.h"
|
|
|
|
class RGBController_HyperXAlloyOriginsCore : public RGBController
|
|
{
|
|
public:
|
|
RGBController_HyperXAlloyOriginsCore(HyperXAlloyOriginsCoreController* controller_ptr);
|
|
~RGBController_HyperXAlloyOriginsCore();
|
|
|
|
void SetupZones();
|
|
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
void KeepaliveThread();
|
|
|
|
private:
|
|
HyperXAlloyOriginsCoreController* controller;
|
|
std::thread* keepalive_thread;
|
|
std::atomic<bool> keepalive_thread_run;
|
|
std::chrono::time_point<std::chrono::steady_clock> last_update_time;
|
|
};
|