mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-02 12:17:51 -05:00
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
/*------------------------------------------------------*\
|
|
| RGBController_AlienwareAW410K.h |
|
|
| |
|
|
| Generic RGB Interface for Alienware |
|
|
| AW410K keyboard |
|
|
| |
|
|
| based on AW510K controller by Mohamad Sallal - msallal|
|
|
| |
|
|
| Dominik Mikolajczyk - dmiko 23/10/2023 |
|
|
\*------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "AlienwareAW410KController.h"
|
|
|
|
class RGBController_AlienwareAW410K : public RGBController
|
|
{
|
|
public:
|
|
RGBController_AlienwareAW410K(AlienwareAW410KController* controller_ptr);
|
|
~RGBController_AlienwareAW410K();
|
|
|
|
void SetupZones();
|
|
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
private:
|
|
AlienwareAW410KController* controller;
|
|
std::vector<RGBColor> current_colors;
|
|
};
|