mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-31 11:17:52 -05:00
34 lines
962 B
C++
34 lines
962 B
C++
/*-----------------------------------------*\
|
|
| RGBController_AMDWraithPrism.h |
|
|
| |
|
|
| Generic RGB Interface for AMD Wraith |
|
|
| Prism |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 12/25/2019 |
|
|
\*-----------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "AMDWraithPrismController.h"
|
|
|
|
class RGBController_AMDWraithPrism : public RGBController
|
|
{
|
|
public:
|
|
RGBController_AMDWraithPrism(AMDWraithPrismController* controller_ptr);
|
|
~RGBController_AMDWraithPrism();
|
|
|
|
void SetupZones();
|
|
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
private:
|
|
AMDWraithPrismController* controller;
|
|
};
|