From 828875a220d45b4e30b0d19e14486356b1c2c6d3 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Thu, 7 Nov 2019 22:58:30 -0500 Subject: [PATCH] add Logitech G512 SE vid and pid to the list of supported devices --- README.md | 1 + src/classes/Keyboard.h | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/README.md b/README.md index f178a92..a39f11a 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ Linux led controller for Logitech G213, G410, G413, G512, G513, G610, G810, G910 - **G410 Atlas Spectrum**
- **G413 Carbon**
- **G512 Carbon**
+- *NEW!* **G512 SE**
- **G513 Carbon**
- **G610 Orion Brown**
- **G610 Orion Red**
diff --git a/src/classes/Keyboard.h b/src/classes/Keyboard.h index 5119b9d..23a0cf6 100644 --- a/src/classes/Keyboard.h +++ b/src/classes/Keyboard.h @@ -45,10 +45,21 @@ class LedKeyboard { public: std::vector> SupportedKeyboards = { + // in case they use the same protocol, this is for the + // logitech g600 gaming mouse + + // { 0x46d, 0xc24a, (uint16_t)KeyboardModel::g610 }, + + { 0x46d, 0xc336, (uint16_t)KeyboardModel::g213 }, { 0x46d, 0xc330, (uint16_t)KeyboardModel::g410 }, { 0x46d, 0xc33a, (uint16_t)KeyboardModel::g413 }, { 0x46d, 0xc33c, (uint16_t)KeyboardModel::g513 }, + + // this is the one I added for the + // Logitech G512 SE + // tested WORKING in Ubuntu 19.10 with hidapi-hidraw + { 0x46d, 0xc342, (uint16_t)KeyboardModel::g513 }, { 0x46d, 0xc333, (uint16_t)KeyboardModel::g610 }, { 0x46d, 0xc338, (uint16_t)KeyboardModel::g610 }, { 0x46d, 0xc331, (uint16_t)KeyboardModel::g810 },