mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-02-02 11:21:05 -05:00
* Mountain60KeyboardController's detector was setting the name member directly, this is an outdated convention that breaks the RGBController rework, moved to a Controller member
* Mountain60KeyboardController had some sort of HID redetect logic, this should not be part of the Controller, this will be handled in the future by HID hotplugging
* Both MountainKeyboardControllers defined static variables to keep track of current mode, moved these to class members so that they won't conflict if two instances exist
* Don't send any device updates as part of SetupZones
51 lines
1.8 KiB
C++
51 lines
1.8 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_MountainKeyboard.h |
|
|
| |
|
|
| RGBController for Mountain keyboard |
|
|
| |
|
|
| O'D.Sæzl Jan 2023 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstring>
|
|
#include "RGBController.h"
|
|
#include "Mountain60KeyboardController.h"
|
|
|
|
#define MOUNTAIN60_KEYBOARD_BRIGHTNESS_MIN 0
|
|
#define MOUNTAIN60_KEYBOARD_BRIGHTNESS_MAX 4
|
|
|
|
#define MOUNTAIN60_KEYBOARD_SPEED_MIN 0
|
|
#define MOUNTAIN60_KEYBOARD_SPEED_MAX 4
|
|
#define MOUNTAIN60_KEYBOARD_SPEED_DEFAULT 2
|
|
#define MOUNTAIN60_KEEP_LIVE_PERIOD 500ms
|
|
|
|
|
|
class RGBController_Mountain60Keyboard : public RGBController
|
|
{
|
|
public:
|
|
RGBController_Mountain60Keyboard(Mountain60KeyboardController* controller_ptr);
|
|
~RGBController_Mountain60Keyboard();
|
|
|
|
void SetupZones();
|
|
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
void DeviceSaveMode();
|
|
void UpdateMountain();
|
|
|
|
private:
|
|
Mountain60KeyboardController* controller;
|
|
int current_mode_value;
|
|
std::thread* mountain_thread;
|
|
std::atomic<bool> mountain_thread_running;
|
|
};
|