36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_RoccatKoneAimo.h |
|
|
| |
|
|
| RGBController for Roccat Kone Aimo |
|
|
| |
|
|
| Thibaud M (enlight3d) 17 Nov 2020 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "RoccatKoneAimoController.h"
|
|
|
|
class RGBController_RoccatKoneAimo : public RGBController
|
|
{
|
|
public:
|
|
RGBController_RoccatKoneAimo(RoccatKoneAimoController* controller_ptr);
|
|
~RGBController_RoccatKoneAimo();
|
|
|
|
void SetupZones();
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
private:
|
|
RoccatKoneAimoController* controller;
|
|
std::vector<ROCCAT_KONE_AIMO_CHANNEL> zones_channel;
|
|
std::vector<ROCCAT_KONE_AIMO_CHANNEL> leds_channel;
|
|
};
|