Files
OpenRGB/Controllers/ValveSteamMachineController/RGBController_ValveSteamMachine_Linux.h
Adam Honse 14d543b9e4 Initial commit for Linux-only controller for Valve Steam Machine using
the leds-valve kernel module and sysfs interface
2026-07-25 01:16:11 -05:00

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;
};