1
0
mirror of https://github.com/MatMoul/g810-led.git synced 2025-04-03 23:01:45 +00:00

add Logitech G512 SE vid and pid to the list of supported devices

This commit is contained in:
Michael Becker 2019-11-07 22:58:30 -05:00
parent 118631d184
commit 0e610c43df
No known key found for this signature in database
GPG Key ID: 389DFF5D73781A12
2 changed files with 12 additions and 0 deletions

View File

@ -7,6 +7,7 @@ Linux led controller for Logitech G213, G410, G413, G512, G513, G610, G810, G910
- **G410 Atlas Spectrum**</br>
- **G413 Carbon**</br>
- **G512 Carbon**</br>
- ** *NEW!* G512 SE**</br>
- **G513 Carbon**</br>
- **G610 Orion Brown**</br>
- **G610 Orion Red**</br>

View File

@ -45,10 +45,21 @@ class LedKeyboard {
public:
std::vector<std::vector<uint16_t>> 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 },