Publish LumaOps source
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_ElgatoKeyLight.h |
|
||||
| |
|
||||
| RGBController for Elgato Key Light |
|
||||
| |
|
||||
| Monks (@iamtherealestmonkey) 01 Nov 2021 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-or-later |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
#include "ElgatoKeyLightController.h"
|
||||
|
||||
class RGBController_ElgatoKeyLight : public RGBController
|
||||
{
|
||||
public:
|
||||
RGBController_ElgatoKeyLight(ElgatoKeyLightController* controller_ptr);
|
||||
~RGBController_ElgatoKeyLight();
|
||||
|
||||
void SetupZones();
|
||||
|
||||
void ResizeZone(int zone, int new_size);
|
||||
|
||||
void DeviceUpdateLEDs();
|
||||
void UpdateZoneLEDs(int zone);
|
||||
void UpdateSingleLED(int led);
|
||||
|
||||
void DeviceUpdateMode();
|
||||
|
||||
private:
|
||||
ElgatoKeyLightController* controller;
|
||||
};
|
||||
Reference in New Issue
Block a user