mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 15:57:50 -05:00
+ Added common library for Logitech Protocol
+ Moved wireless detection to the LogitechProtocolCommon.cpp
+ Adding Direct Mode to the wireless control
+ Copying the mutex from Lightsync controller to avoid interference
+ Adding LED count info to controller constructor
+ Created a new Logitech class
+ Added Feature list enumeration
+ Added DeviceName detection from device
* Changed LogitechGProWirelessController to accomodate generic devices
* LED count from device is now used in RGBController setup
+ Adding Windows specific detection as Linux Kernel handles this already.
+ Adding virtual PIDS for wireless detection
* LOGITECH G403
* LOGITECH G502
* LOGITECH G703
* LOGITECH G900
* LOGITECH G903
* LOGITECH GPRO
+ Adding Logitech G900 Wired Gaming Mouse PID
+ Adding other all lightspeed mice to wired detector for testing
* Genericised and optimised code paths
* Speed up wireless detection
Commit amended for code style by Adam Honse <calcprogrammer1@gmail.com>
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
/*-----------------------------------------*\
|
|
| LogitechGProWirelessController.cpp |
|
|
| |
|
|
| Driver for Logitech G Pro Wireless Gaming|
|
|
| Mouse lighting controller |
|
|
| |
|
|
| TheRogueZeta 8/5/2020 |
|
|
\*-----------------------------------------*/
|
|
|
|
#include "LogitechGProWirelessController.h"
|
|
|
|
#include <cstring>
|
|
|
|
LogitechGProWirelessController::LogitechGProWirelessController(hid_device* dev_handle, const char* path)
|
|
{
|
|
dev = dev_handle;
|
|
location = path;
|
|
}
|
|
|
|
LogitechGProWirelessController::~LogitechGProWirelessController()
|
|
{
|
|
delete lightspeed;
|
|
}
|
|
|
|
std::string LogitechGProWirelessController::GetDeviceLocation()
|
|
{
|
|
return("HID: " + location + " (Receiver) \r\nWireless Index: " + std::to_string(lightspeed->device_index));
|
|
}
|
|
|
|
std::string LogitechGProWirelessController::GetSerialString()
|
|
{
|
|
wchar_t serial_string[128];
|
|
hid_get_serial_number_string(dev, serial_string, 128);
|
|
|
|
std::wstring return_wstring = serial_string;
|
|
std::string return_string(return_wstring.begin(), return_wstring.end());
|
|
|
|
return(return_string);
|
|
}
|
|
|
|
void LogitechGProWirelessController::SendMouseMode
|
|
(
|
|
unsigned char mode,
|
|
std::uint16_t speed,
|
|
unsigned char zone,
|
|
unsigned char red,
|
|
unsigned char green,
|
|
unsigned char blue
|
|
// unsigned char brightness
|
|
)
|
|
{
|
|
lightspeed->setMode(mode, speed, zone, red, green, blue, 0x64);
|
|
}
|