From 0ecd800b418769e05827d07663695cc1cd90d817 Mon Sep 17 00:00:00 2001 From: MatMoul Date: Thu, 5 Jan 2017 21:59:03 +0100 Subject: [PATCH] Add new product ID for G610 --- src/classes/Keyboard.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/classes/Keyboard.cpp b/src/classes/Keyboard.cpp index 02bc2c5..58e68ab 100644 --- a/src/classes/Keyboard.cpp +++ b/src/classes/Keyboard.cpp @@ -43,6 +43,7 @@ bool Keyboard::attach() { if (desc.idProduct == 0xc337) { pid = desc.idProduct; break; } // G810 spectrum if (desc.idProduct == 0xc330) { pid = desc.idProduct; break; } // G410 spectrum if (desc.idProduct == 0xc333) { pid = desc.idProduct; break; } // G610 spectrum + if (desc.idProduct == 0xc338) { pid = desc.idProduct; break; } // G610 spectrum if (desc.idProduct == 0xc32b) { // G910 spark pid = desc.idProduct; kbdProtocol = KeyboardProtocol::g910;