mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-30 02:37:51 -05:00
* Reorganize and clean up RGBController API functions
* Add functions to get protected RGBController member values
* Make NetworkClient, ProfileManager, and ResourceManager friend classes so they can access protected members
* Protected previously-public RGBController members
* Information strings (name, vendor, description, version, serial location)
* Device type
* Active mode
* Flags
* LEDs vector
* LED alternate names vector
* Modes vector
* Colors vector
* Zones vector
* Add CONTROLLER_FLAG_HIDDEN to allow plugins to hide controllers from control GUI
* Add update reason codes to RGBController update callback and signal updates on more RGBController events
* Add loop zone types and segmented zone type
* Add matrix map field to segments
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_Faustus_Linux.h |
|
|
| |
|
|
| RGBController for Faustus devices |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <fstream>
|
|
#include "RGBController.h"
|
|
|
|
enum
|
|
{
|
|
FAUSTUS_MODE_STATIC = 0,
|
|
FAUSTUS_MODE_BREATHING = 1,
|
|
FAUSTUS_MODE_COLOR_CYCLE = 2,
|
|
FAUSTUS_MODE_STROBE = 3
|
|
};
|
|
enum
|
|
{
|
|
FAUSTUS_SPEED_SLOWEST = 0,
|
|
FAUSTUS_SPEED_NORMAL = 1,
|
|
FAUSTUS_SPEED_FASTEST = 2,
|
|
};
|
|
|
|
class RGBController_Faustus : public RGBController
|
|
{
|
|
private:
|
|
std::string r_path;
|
|
std::string g_path;
|
|
std::string b_path;
|
|
std::string mode_path;
|
|
std::string flags_path;
|
|
std::string set_path;
|
|
|
|
public:
|
|
RGBController_Faustus(const std::string& dev_path);
|
|
|
|
void SetupZones();
|
|
|
|
void DeviceUpdateLEDs();
|
|
void DeviceUpdateZoneLEDs(int zone);
|
|
void DeviceUpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
};
|