mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-07-30 06:56:08 -04:00
34 lines
1.2 KiB
C++
34 lines
1.2 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_ValveSteamMachine_Linux.h |
|
|
| |
|
|
| RGBController for Valve Steam Machine LEDs |
|
|
| |
|
|
| Adam Honse (calcprogrammer1@gmail.com) 23 Jul 2026 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "ValveSteamMachineController_Linux.h"
|
|
|
|
class RGBController_ValveSteamMachine : public RGBController
|
|
{
|
|
public:
|
|
RGBController_ValveSteamMachine(ValveSteamMachineController* controller_ptr);
|
|
~RGBController_ValveSteamMachine();
|
|
|
|
void SetupZones();
|
|
|
|
void DeviceUpdateLEDs();
|
|
void DeviceUpdateZoneLEDs(int zone);
|
|
void DeviceUpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
private:
|
|
ValveSteamMachineController* controller;
|
|
std::vector<std::string> effects;
|
|
}; |