mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 07:47:49 -05:00
* Code cleanup to remove depracated code * Implementing workaround for mode breathing / spectrum cycle value swap
68 lines
2.4 KiB
C++
68 lines
2.4 KiB
C++
/*-----------------------------------------*\
|
|
| LogitechLightspeedController.h |
|
|
| |
|
|
| Definitions and types for Logitech G |
|
|
| Lightsync Wireless Gaming Mice lighting |
|
|
| controller |
|
|
| |
|
|
| TheRogueZeta 8/5/2020 |
|
|
\*-----------------------------------------*/
|
|
|
|
#include "RGBController.h"
|
|
#include "LogManager.h"
|
|
#include "LogitechProtocolCommon.h"
|
|
|
|
#include <string>
|
|
#include <hidapi/hidapi.h>
|
|
|
|
#pragma once
|
|
#define LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MIN 0x01
|
|
#define LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MAX 0x64
|
|
|
|
enum
|
|
{
|
|
LOGITECH_G_PRO_WIRELESS_MODE_OFF = 0x00,
|
|
LOGITECH_G_PRO_WIRELESS_MODE_STATIC = 0x01,
|
|
LOGITECH_G_PRO_WIRELESS_MODE_CYCLE = 0x02,
|
|
LOGITECH_G_PRO_WIRELESS_MODE_BREATHING = 0x03,
|
|
};
|
|
|
|
/*---------------------------------------------------------------------------------------------*\
|
|
| Speed is 1000 for fast and 20000 for slow. |
|
|
| Values are multiplied by 100 later to give lots of GUI steps. |
|
|
\*---------------------------------------------------------------------------------------------*/
|
|
enum
|
|
{
|
|
LOGITECH_G_PRO_WIRELESS_SPEED_SLOWEST = 0xC8, /* Slowest speed */
|
|
LOGITECH_G_PRO_WIRELESS_SPEED_NORMAL = 0x32, /* Normal speed */
|
|
LOGITECH_G_PRO_WIRELESS_SPEED_FASTEST = 0x0A, /* Fastest speed */
|
|
};
|
|
|
|
class LogitechLightspeedController
|
|
{
|
|
public:
|
|
LogitechLightspeedController(hid_device* dev_handle, const char* path);
|
|
~LogitechLightspeedController();
|
|
|
|
logitech_device* lightspeed;
|
|
|
|
std::string GetDeviceLocation();
|
|
std::string GetSerialString();
|
|
|
|
void SendMouseMode
|
|
(
|
|
unsigned char mode,
|
|
uint16_t speed,
|
|
unsigned char zone,
|
|
unsigned char red,
|
|
unsigned char green,
|
|
unsigned char blue,
|
|
unsigned char brightness,
|
|
bool bright_cycle_swap
|
|
);
|
|
|
|
private:
|
|
hid_device* dev;
|
|
std::string location;
|
|
};
|