-
-
Notifications
You must be signed in to change notification settings - Fork 346
Expand file tree
/
Copy pathRGBController_TForceXtreem.h
More file actions
38 lines (29 loc) · 1.24 KB
/
RGBController_TForceXtreem.h
File metadata and controls
38 lines (29 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*---------------------------------------------------------*\
| RGBController_TForceXtreem.h |
| |
| RGBController for TeamGroup T-Force Xtreem RAM |
| |
| Milan Cermak (krysmanta) 28 Dec 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-or-later |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include "RGBController.h"
#include "TForceXtreemController.h"
class RGBController_TForceXtreem : public RGBController
{
public:
RGBController_TForceXtreem(TForceXtreemController* controller_ptr, const std::string& device_name = "T-Force Xtreem RGB");
~RGBController_TForceXtreem();
void SetupZones();
void ResizeZone(int zone, int new_size);
void DeviceUpdateLEDs();
void UpdateZoneLEDs(int zone);
void UpdateSingleLED(int led);
void DeviceUpdateMode();
private:
TForceXtreemController* controller;
int GetDeviceMode();
};