mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-27 01:07:49 -05:00
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
/*-------------------------------------------*\
|
|
| RGBController_HyperXPulsefireRaid.h |
|
|
| |
|
|
| Generic RGB Interface for HyperX |
|
|
| Pulsefire Raid |
|
|
| |
|
|
| Morgan Guimard (morg) 04/06/2022 |
|
|
\*-------------------------------------------*/
|
|
|
|
#pragma once
|
|
#include <chrono>
|
|
|
|
#include "RGBController.h"
|
|
#include "HyperXPulsefireRaidController.h"
|
|
|
|
class RGBController_HyperXPulsefireRaid : public RGBController
|
|
{
|
|
public:
|
|
RGBController_HyperXPulsefireRaid(HyperXPulsefireRaidController* controller_ptr);
|
|
~RGBController_HyperXPulsefireRaid();
|
|
|
|
void SetupZones();
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
void DeviceSaveMode();
|
|
|
|
private:
|
|
HyperXPulsefireRaidController* controller;
|
|
std::thread* keepalive_thread;
|
|
std::atomic<bool> keepalive_thread_run;
|
|
std::chrono::time_point<std::chrono::steady_clock> last_update_time;
|
|
void KeepaliveThread();
|
|
};
|