mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-02-14 09:11:14 -05:00
32 lines
1004 B
C++
32 lines
1004 B
C++
/*---------------------------------------------------------*\
|
|
| RGBController_AsusTUFLaptop_Linux.h |
|
|
| |
|
|
| RGBController for ASUS TUF laptop |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "AsusTUFLaptopController_Linux.h"
|
|
|
|
class RGBController_AsusTUFLaptopLinux : public RGBController
|
|
{
|
|
public:
|
|
RGBController_AsusTUFLaptopLinux(AsusTUFLaptopLinuxController* controller_ptr);
|
|
~RGBController_AsusTUFLaptopLinux();
|
|
|
|
void SetupZones();
|
|
|
|
void DeviceUpdateLEDs();
|
|
void DeviceUpdateZoneLEDs(int zone);
|
|
void DeviceUpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
private:
|
|
AsusTUFLaptopLinuxController* controller;
|
|
};
|