mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_ElgatoLightStrip.h |
|
|
| |
|
|
| RGBController for Elgato Light Strip |
|
|
| |
|
|
| Monks (@iamtherealestmonkey) 01 Nov 2021 |
|
|
| DomePlaysHD 12 Mar 2024 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "ElgatoLightStripController.h"
|
|
|
|
class RGBController_ElgatoLightStrip : public RGBController
|
|
{
|
|
public:
|
|
RGBController_ElgatoLightStrip(ElgatoLightStripController* controller_ptr);
|
|
~RGBController_ElgatoLightStrip();
|
|
|
|
void SetupZones();
|
|
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
private:
|
|
ElgatoLightStripController* controller;
|
|
};
|