Store name in LogitechControllers to avoid setting it in detectors
This commit is contained in:
parent
86fbdfa6e7
commit
a0726dc065
35 changed files with 258 additions and 185 deletions
|
|
@ -17,10 +17,11 @@
|
|||
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
LogitechG933Controller::LogitechG933Controller(hid_device* dev_handle, const char* path)
|
||||
LogitechG933Controller::LogitechG933Controller(hid_device* dev_handle, const char* path, std::string dev_name)
|
||||
{
|
||||
dev = dev_handle;
|
||||
location = path;
|
||||
name = dev_name;
|
||||
}
|
||||
|
||||
LogitechG933Controller::~LogitechG933Controller()
|
||||
|
|
@ -33,6 +34,11 @@ std::string LogitechG933Controller::GetDeviceLocation()
|
|||
return("HID: " + location);
|
||||
}
|
||||
|
||||
std::string LogitechG933Controller::GetDeviceName()
|
||||
{
|
||||
return(name);
|
||||
}
|
||||
|
||||
void LogitechG933Controller::SetDirectMode(uint8_t zone)
|
||||
{
|
||||
unsigned char usb_buf[LOGI_G933_LED_PACKET_SIZE];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue