mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-25 00:07:49 -05:00
155 lines
4.6 KiB
C++
155 lines
4.6 KiB
C++
/*---------------------------------------------------------*\
|
|
| LogitechG203LController.cpp |
|
|
| |
|
|
| Driver for Logitech G203L |
|
|
| |
|
|
| Eric Samuelson (edbgon) 06 Oct 2020 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include <cstring>
|
|
#include "LogitechG213Controller.h"
|
|
#include "StringUtils.h"
|
|
|
|
LogitechG213Controller::LogitechG213Controller(hid_device* dev_handle, const char* path)
|
|
{
|
|
dev = dev_handle;
|
|
location = path;
|
|
}
|
|
|
|
LogitechG213Controller::~LogitechG213Controller()
|
|
{
|
|
hid_close(dev);
|
|
}
|
|
|
|
std::string LogitechG213Controller::GetDeviceLocation()
|
|
{
|
|
return("HID: " + location);
|
|
}
|
|
|
|
std::string LogitechG213Controller::GetSerialString()
|
|
{
|
|
wchar_t serial_string[128];
|
|
int ret = hid_get_serial_number_string(dev, serial_string, 128);
|
|
|
|
if(ret != 0)
|
|
{
|
|
return("");
|
|
}
|
|
|
|
return(StringUtils::wstring_to_string(serial_string));
|
|
}
|
|
|
|
void LogitechG213Controller::SetDirect
|
|
(
|
|
unsigned char zone,
|
|
unsigned char r,
|
|
unsigned char g,
|
|
unsigned char b
|
|
)
|
|
{
|
|
unsigned char usb_buf[20];
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Zero out buffer |
|
|
\*-----------------------------------------------------*/
|
|
memset(usb_buf, 0x00, sizeof(usb_buf));
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Set up Lighting Control packet |
|
|
\*-----------------------------------------------------*/
|
|
usb_buf[0x00] = 0x11;
|
|
usb_buf[0x01] = 0xFF;
|
|
usb_buf[0x02] = 0x0C;
|
|
usb_buf[0x03] = 0x3A;
|
|
usb_buf[0x04] = zone;
|
|
usb_buf[0x05] = 0x01;
|
|
usb_buf[0x06] = r;
|
|
usb_buf[0x07] = g;
|
|
usb_buf[0x08] = b;
|
|
usb_buf[0x09] = 0x02;
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Send packet |
|
|
\*-----------------------------------------------------*/
|
|
hid_write(dev, usb_buf, 20);
|
|
hid_read(dev, usb_buf, 20);
|
|
}
|
|
|
|
void LogitechG213Controller::SetMode
|
|
(
|
|
unsigned char mode,
|
|
unsigned short speed,
|
|
unsigned char direction,
|
|
unsigned char red,
|
|
unsigned char green,
|
|
unsigned char blue
|
|
)
|
|
{
|
|
SendMode(LOGITECH_G213_ZONE_MODE_KEYBOARD, mode, speed, direction, red, green, blue);
|
|
}
|
|
|
|
void LogitechG213Controller::SendMode
|
|
(
|
|
unsigned char zone,
|
|
unsigned char mode,
|
|
unsigned short speed,
|
|
unsigned char direction,
|
|
unsigned char red,
|
|
unsigned char green,
|
|
unsigned char blue
|
|
)
|
|
{
|
|
unsigned char usb_buf[20];
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Zero out buffer |
|
|
\*-----------------------------------------------------*/
|
|
memset(usb_buf, 0x00, sizeof(usb_buf));
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Set up Lighting Control packet |
|
|
\*-----------------------------------------------------*/
|
|
usb_buf[0x00] = 0x11;
|
|
usb_buf[0x01] = 0xFF;
|
|
usb_buf[0x02] = 0x0C;
|
|
usb_buf[0x03] = 0x3C;
|
|
usb_buf[0x04] = zone;
|
|
|
|
usb_buf[0x05] = mode;
|
|
|
|
usb_buf[0x06] = red;
|
|
usb_buf[0x07] = green;
|
|
usb_buf[0x08] = blue;
|
|
|
|
speed = 100 * speed;
|
|
|
|
if(mode == LOGITECH_G213_MODE_BREATHING)
|
|
{
|
|
usb_buf[0x09] = speed >> 8;
|
|
usb_buf[0x0A] = speed & 0xFF;
|
|
usb_buf[0x0C] = 0x64;
|
|
}
|
|
else if(mode == LOGITECH_G213_MODE_CYCLE)
|
|
{
|
|
usb_buf[0x0B] = speed >> 8;
|
|
usb_buf[0x0C] = speed & 0xFF;
|
|
usb_buf[0x0D] = 0x64;
|
|
}
|
|
else if(mode == LOGITECH_G213_MODE_WAVE)
|
|
{
|
|
usb_buf[0x0B] = speed >> 8;
|
|
usb_buf[0x0C] = speed & 0xFF;
|
|
usb_buf[0x0D] = direction & 0xFF;
|
|
usb_buf[0x0F] = speed >> 8;
|
|
}
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Send packet |
|
|
\*-----------------------------------------------------*/
|
|
hid_write(dev, usb_buf, 20);
|
|
hid_read(dev, usb_buf, 20);
|
|
}
|