mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-25 08:17:53 -05:00
57 lines
1.6 KiB
C++
57 lines
1.6 KiB
C++
/*-----------------------------------------*\
|
|
| LogitechG933Controller.h |
|
|
| |
|
|
| Definitions and types for |
|
|
| Logitech G933 RGB Headset |
|
|
| |
|
|
| Edbgon 06/21/2021 |
|
|
| Based on |
|
|
| TheRogueZeta 8/31/2020 |
|
|
\*-----------------------------------------*/
|
|
#include "RGBController.h"
|
|
|
|
#include <string>
|
|
#include <hidapi/hidapi.h>
|
|
|
|
#pragma once
|
|
|
|
#define LOGI_G933_LED_PACKET_SIZE 20
|
|
#define LOGI_G933_LED_COMMAND_SEND_RETRIES 3
|
|
|
|
enum
|
|
{
|
|
LOGITECH_G933_MODE_OFF = 0x00,
|
|
LOGITECH_G933_MODE_DIRECT = 0x01,
|
|
LOGITECH_G933_MODE_CYCLE = 0x02,
|
|
LOGITECH_G933_MODE_BREATHING = 0x03,
|
|
};
|
|
|
|
class LogitechG933Controller
|
|
{
|
|
public:
|
|
LogitechG933Controller(hid_device* dev_handle, const char* path);
|
|
~LogitechG933Controller();
|
|
|
|
std::string GetDeviceLocation();
|
|
|
|
void SetDirectMode(uint8_t zone);
|
|
void SetOffMode(uint8_t zone);
|
|
|
|
void SendHeadsetMode
|
|
(
|
|
unsigned char zone,
|
|
unsigned char mode,
|
|
unsigned char red,
|
|
unsigned char green,
|
|
unsigned char blue
|
|
);
|
|
|
|
private:
|
|
hid_device* dev;
|
|
std::string location;
|
|
|
|
void fail_retry_write(hid_device *device, const unsigned char *data, size_t length);
|
|
};
|
|
|
|
|