Replies: 1 comment
|
So, now that support for the Logitech G13 has landed in kernel 6.19, perhaps it's time to figure out why input-remapper can't/won't see the keypad. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'm working on a driver for the old Logitech G13 gaming keypad. Here's the current capability mapping (subject to minor change):
As you can see, it has no "normal" buttons or keys (indeed, I would suggest this is precisely the kind of peripheral for which input-mapper is ideally suited). However, the classifier in
groups.pydoesn't know what to make of this, classifies it asUNKNOWNand completely ignores it.It would be nice to have a provision whereby I can say, "No no, this is a valid input device that generates valid events; please register it, anyway." This could be specified by USB vendor/product ID, the name registered with the kernel input system, or by whatever else is convenient for the program.
All reactions