73 lines
1.7 KiB
C++
73 lines
1.7 KiB
C++
/*-----------------------------------------*\
|
|
| AsusROGAllyController.h |
|
|
| |
|
|
| Definitions and types for ASUS ROG Ally |
|
|
| lighting controller |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 6/12/2023 |
|
|
\*-----------------------------------------*/
|
|
|
|
#include "RGBController.h"
|
|
#include <hidapi/hidapi.h>
|
|
|
|
#pragma once
|
|
|
|
enum
|
|
{
|
|
ROG_ALLY_MODE_STATIC = 0,
|
|
ROG_ALLY_MODE_BREATHING = 1,
|
|
ROG_ALLY_MODE_COLOR_CYCLE = 2,
|
|
ROG_ALLY_MODE_RAINBOW = 3,
|
|
ROG_ALLY_MODE_STROBING = 10,
|
|
ROG_ALLY_MODE_DIRECT = 0xFF,
|
|
};
|
|
|
|
enum
|
|
{
|
|
ROG_ALLY_SPEED_MIN = 0xE1,
|
|
ROG_ALLY_SPEED_MED = 0xEB,
|
|
ROG_ALLY_SPEED_MAX = 0xF5
|
|
};
|
|
|
|
enum
|
|
{
|
|
ROG_ALLY_DIRECTION_RIGHT = 0x00,
|
|
ROG_ALLY_DIRECTION_LEFT = 0x01
|
|
};
|
|
|
|
class ROGAllyController
|
|
{
|
|
public:
|
|
ROGAllyController(hid_device* dev_handle, const char* path);
|
|
virtual ~ROGAllyController();
|
|
|
|
std::string GetDeviceLocation();
|
|
std::string GetSerialString();
|
|
std::string GetVersion();
|
|
|
|
void SendInitialization();
|
|
|
|
void UpdateBrightness
|
|
(
|
|
unsigned char brightness
|
|
);
|
|
|
|
void UpdateLeds
|
|
(
|
|
std::vector<RGBColor> colors
|
|
);
|
|
|
|
void UpdateDevice
|
|
(
|
|
unsigned char mode,
|
|
std::vector<RGBColor> colors,
|
|
unsigned char speed,
|
|
unsigned char direction
|
|
);
|
|
|
|
void SaveMode();
|
|
|
|
private:
|
|
hid_device* dev;
|
|
std::string location;
|
|
};
|