mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-04 21:27:51 -05:00
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
/*-----------------------------------------*\
|
|
| RGBController_HyperXMicrophone.h |
|
|
| |
|
|
| Implementation for the HyperX |
|
|
| Quadcast S RGB microphone |
|
|
| |
|
|
| Matt Silva (thesilvanator) 2022 |
|
|
\*-----------------------------------------*/
|
|
|
|
#pragma once
|
|
#include <chrono>
|
|
|
|
#include "RGBController.h"
|
|
#include "HyperXMicrophoneController.h"
|
|
|
|
class RGBController_HyperXMicrophone : public RGBController
|
|
{
|
|
public:
|
|
RGBController_HyperXMicrophone(HyperXMicrophoneController* controller_ptr);
|
|
~RGBController_HyperXMicrophone();
|
|
|
|
void SetupZones();
|
|
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
void DeviceSaveMode();
|
|
|
|
void KeepaliveThread();
|
|
|
|
private:
|
|
HyperXMicrophoneController* controller;
|
|
std::thread* keepalive_thread;
|
|
std::atomic<bool> keepalive_thread_run;
|
|
std::chrono::time_point<std::chrono::steady_clock> last_update_time;
|
|
};
|