mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-01 03:37:49 -05:00
73 lines
2.5 KiB
C++
73 lines
2.5 KiB
C++
/*-------------------------------------------------------------------*\
|
|
| QMKOpenRGBRev9Controller.h |
|
|
| |
|
|
| Driver for QMK keyboards using OpenRGB Protocol (Revision 9) |
|
|
| |
|
|
| Revision 9 was the initial protocol supported by OpenRGB 0.6. |
|
|
| |
|
|
| Kasper 10th Octobber 2020 |
|
|
| Jath03 28th May 2021 |
|
|
\*-------------------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "QMKOpenRGBController.h"
|
|
|
|
class QMKOpenRGBRev9Controller
|
|
{
|
|
public:
|
|
QMKOpenRGBRev9Controller(hid_device *dev_handle, const char *path);
|
|
~QMKOpenRGBRev9Controller();
|
|
|
|
std::string GetLocation();
|
|
std::string GetDeviceName();
|
|
std::string GetDeviceVendor();
|
|
|
|
unsigned int GetTotalNumberOfLEDs();
|
|
unsigned int GetTotalNumberOfLEDsWithEmptySpace();
|
|
unsigned int GetMode();
|
|
unsigned int GetModeSpeed();
|
|
unsigned int GetModeColor();
|
|
|
|
std::vector<point_t> GetLEDPoints();
|
|
std::vector<unsigned int> GetLEDFlags();
|
|
std::vector<std::string> GetLEDNames();
|
|
std::vector<RGBColor> GetLEDColors();
|
|
|
|
unsigned int GetProtocolVersion();
|
|
std::string GetQMKVersion();
|
|
void GetDeviceInfo();
|
|
void GetModeInfo();
|
|
void GetLEDInfo(unsigned int led);
|
|
bool GetIsModeEnabled(unsigned int mode);
|
|
|
|
void SetMode(hsv_t hsv_color, unsigned char mode, unsigned char speed);
|
|
void DirectModeSetSingleLED(unsigned int led, unsigned char red, unsigned char green, unsigned char blue);
|
|
void DirectModeSetLEDs(std::vector<RGBColor> colors, unsigned int num_colors);
|
|
|
|
protected:
|
|
hid_device *dev;
|
|
|
|
private:
|
|
unsigned int leds_per_update;
|
|
|
|
std::string location;
|
|
|
|
std::string device_name;
|
|
std::string device_vendor;
|
|
|
|
std::chrono::milliseconds delay;
|
|
|
|
unsigned int total_number_of_leds;
|
|
unsigned int total_number_of_leds_with_empty_space;
|
|
unsigned int mode;
|
|
unsigned int mode_speed;
|
|
|
|
RGBColor mode_color;
|
|
|
|
std::vector<point_t> led_points;
|
|
std::vector<unsigned int> led_flags;
|
|
std::vector<std::string> led_names;
|
|
std::vector<RGBColor> led_colors;
|
|
};
|