Files
OpenRGB/Controllers/SRGBmodsController/SRGBmodsLEDControllerV1/RGBController_SRGBmodsLEDControllerV1.h
Adam Honse 56bd7580ba Zone and Segment type updates
* Add zone flags to indicate if fields are manually configurable and if they have been manually configured
  * Add flags field to segment type
  * Add segment flags for group start and group member
  * Add color mode support flags to zone (RGB, RBG, GRB, GBR, BRG, BGR)
  * Add color mode enum to zone
  * Update zone and segment description functions to support new fields
  * Rename the effects-only configurable size flag
  * Remove zone type and matrix map configuration from E1.31 manual configuration, use zone editor instead
  * Rework DeviceResizeZone to DeviceConfigureZone
  * Rework most ARGB controllers to allow zone customizations
  * Rework DRGBController to define devices in DRGBDevices list (similar to RazerDevices)
  * Rework NollieController to define devices in NollieDevices list (similar to RazerDevices)
2026-05-07 17:24:46 -05:00

39 lines
1.3 KiB
C++

/*---------------------------------------------------------*\
| RGBController_SRGBmodsLEDControllerV1.h |
| |
| RGBController for SRGBmods LED Controller V1 |
| |
| Adam Honse (CalcProgrammer1) 30 Jun 2023 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-or-later |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "SRGBmodsLEDControllerV1.h"
#define SRGBMODS_LED_CONTROLLER_V1_NUM_CHANNELS 1
class RGBController_SRGBmodsLEDControllerV1 : public RGBController
{
public:
RGBController_SRGBmodsLEDControllerV1(SRGBmodsLEDControllerV1* controller_ptr);
~RGBController_SRGBmodsLEDControllerV1();
void SetupZones();
void DeviceConfigureZone(int zone_idx);
void DeviceUpdateLEDs();
void DeviceUpdateZoneLEDs(int zone);
void DeviceUpdateSingleLED(int led);
void DeviceUpdateMode();
private:
SRGBmodsLEDControllerV1* controller;
std::vector<unsigned int> leds_channel;
std::vector<unsigned int> zones_channel;
};