mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-26 16:57:51 -05:00
87 lines
2.5 KiB
C++
87 lines
2.5 KiB
C++
/*-----------------------------------------*\
|
|
| MSIOptixController.h |
|
|
| |
|
|
| Driver for MSI Optix monitor lighting |
|
|
| controller - header file |
|
|
| |
|
|
| Guimard Morgan (morg) 1/10/2022 |
|
|
\*-----------------------------------------*/
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include <string>
|
|
#include <hidapi/hidapi.h>
|
|
|
|
#define MSI_OPTIX_REPORT_SIZE 168
|
|
#define MSI_OPTIX_COLOR_PACKET_SIZE 48
|
|
#define MSI_OPTIX_NUMBER_OF_LEDS 12
|
|
#define MSI_OPTIX_DIRECT_COLOR_OFFSET 24 * 3;
|
|
#define MSI_OPTIC_REPORT_ID 0x72
|
|
#define MSI_OPTIX_DEFAULT_MODE_COLOR ToRGBColor(255,0,0)
|
|
|
|
enum
|
|
{
|
|
OFF_MODE_VALUE = 0x00,
|
|
RAINBOW_MODE_VALUE = 0x0f,
|
|
METEOR_MODE_VALUE = 0x07,
|
|
STACK_MODE_VALUE = 0x08,
|
|
BREATHING_MODE_VALUE = 0x02,
|
|
FLASHING_MODE_VALUE = 0x03,
|
|
DOUBLE_FLASHING_MODE_VALUE = 0x04,
|
|
DIRECT_MODE_VALUE = 0x01,
|
|
STATIC_MODE_VALUE = 0x01,
|
|
LIGHNING_MODE_VALUE = 0x05,
|
|
PLANETARY_MODE_VALUE = 0x10,
|
|
DOUBLE_METEOR_MODE_VALUE = 0x11,
|
|
ENERGY_MODE_VALUE = 0x12,
|
|
BLINK_MODE_VALUE = 0x13,
|
|
CLOCK_MODE_VALUE = 0x14,
|
|
COLOR_PULSE_MODE_VALUE = 0x15,
|
|
COLOR_SHIFT_MODE_VALUE = 0x16,
|
|
COLOR_WAVE_MODE_VALUE = 0x17,
|
|
MARQUEE_MODE_VALUE = 0x18,
|
|
RAINBOW_WAVE_MODE_VALUE = 0x1a,
|
|
VISOR_MODE_VALUE = 0x1b
|
|
};
|
|
|
|
enum
|
|
{
|
|
MSI_OPTIX_BRIGHTNESS_MIN = 0x00,
|
|
MSI_OPTIX_BRIGHTNESS_MAX = 0x64
|
|
};
|
|
|
|
enum
|
|
{
|
|
MSI_OPTIX_SPEED_MIN = 0x00,
|
|
MSI_OPTIX_SPEED_MAX = 0x02
|
|
};
|
|
|
|
enum
|
|
{
|
|
MSI_OPTIX_MYSTERIOUS_FLAG = 0x80
|
|
};
|
|
|
|
class MSIOptixController
|
|
{
|
|
public:
|
|
MSIOptixController(hid_device* dev_handle, const hid_device_info& info);
|
|
~MSIOptixController();
|
|
|
|
std::string GetSerialString();
|
|
std::string GetDeviceLocation();
|
|
std::string GetFirmwareVersion();
|
|
|
|
void SetDirect(std::vector<RGBColor> colors, unsigned char brightness);
|
|
void SetMode(std::vector<RGBColor> colors, unsigned char brightness, unsigned char speed, unsigned char mode_value, unsigned int mode_flags);
|
|
|
|
protected:
|
|
hid_device* dev;
|
|
|
|
private:
|
|
std::string location;
|
|
std::string serial_number;
|
|
std::string version;
|
|
|
|
unsigned char GetMysteriousFlag(unsigned char mode_value);
|
|
};
|