1
0
mirror of https://github.com/MatMoul/g810-led.git synced 2025-04-04 23:31:48 +00:00
Linux led controller for Logitech G213, G410, G413, G512, G513, G610, G810, g815, G910 and GPRO Keyboards
Go to file
2018-01-31 22:41:48 +01:00
app change app name to ledkeyboard 2018-01-31 22:02:20 +01:00
include cmake support and reordering of files 2018-01-31 21:52:07 +01:00
sample_effects Add sample python effect 2017-03-18 21:52:57 +01:00
sample_profiles Fix Bad Character on fkeys as noticed in #85 2017-05-20 18:26:23 -04:00
src cmake support and reordering of files 2018-01-31 21:52:07 +01:00
systemd Update systemd service 2017-01-15 00:33:12 +01:00
udev Add G413 support 2017-08-02 11:43:03 +02:00
.gitignore cmake support and reordering of files 2018-01-31 21:52:07 +01:00
CMakeLists.txt cmake support and reordering of files 2018-01-31 21:52:07 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2017-05-26 20:14:05 +02:00
CONTRIBUTORS.md updated documentation 2018-01-31 22:20:28 +01:00
INSTALL.md updated documentation 2018-01-31 22:20:28 +01:00
LICENSE Switch from LGPLv3 to GPLv3 2016-12-06 21:59:14 +01:00
makefile change names in makefile 2018-01-31 22:41:48 +01:00
makerelease Update makeversion 2017-04-29 17:09:27 +02:00
README.md updated documentation 2018-01-31 22:20:28 +01:00

g810-led

Linux led controller for Logitech G213, G410, G610, G810, G910 and GPRO Keyboards.

Compatible keyboards :

  • G213 Prodigy
  • G410 Atlas Spectrum
  • G413 Carbon
  • G610 Orion Brown
  • G610 Orion Red
  • G810 Orion Spectrum
  • G910 Orion Spark
  • G910 Orion Spectrum
  • GPRO

Contribute and evolution :

Install :

Help :

ledkeyboard --help
ledkeyboard --help-keys
ledkeyboard --help-effects
ledkeyboard --help-samples

Samples :

ledkeyboard -p /etc/g810/profile # Load a profile
ledkeyboard -k logo ff0000 # Set color of a key
ledkeyboard -a 00ff00 # Set color of all keys
ledkeyboard -g fkeys ff00ff # Set color of a group of keys
ledkeyboard -s color # Set keyboard power on effect
ledkeyboard -fx color keys 00ff00 # Set fixed color effect
ledkeyboard -fx breathing logo 00ff00 0a # Set breathing effect
ledkeyboard -fx cycle all 0a # Set color cycle effect
ledkeyboard -fx hwave keys 0a # Set horizontal wave effect
ledkeyboard -fx vwave keys 0a # Set vertical wave effect
ledkeyboard -fx cwave keys 0a # Set center wave effect

Samples with no commit :

ledkeyboard -an 000000 # Set color of all key with no action
ledkeyboard -gn modifiers ff0000 # Set color of a group with no action
ledkeyboard -kn w ff0000 # Set color of a key with no action
ledkeyboard -kn a ff0000 # Set color of a key with no action
ledkeyboard -kn s ff0000 # Set color of a key with no action
ledkeyboard -kn d ff0000 # Set color of a key with no action
ledkeyboard -c # Commit all changes

Samples for g610 :

ledkeyboard -a 60 # Set intensity of all keys
ledkeyboard -k logo ff # Set intensity of a key
ledkeyboard -g fkeys aa # Set intensity of a group of keys

Samples for g213 :

ledkeyboard -a 00ff00 # Set all keys green
ledkeyboard -r 1 ff0000 # Set region 1 red

Samples with pipe (for effects) :

ledkeyboard -pp < profilefile # Load a profile
echo -e "k w ff0000\nk a ff0000\nk s ff0000\nk d ff0000\nc" | ledkeyboard -pp # Set multiple keys

Testing unsuported keyboards :

Start by retrieve the VendorID and the ProductID of your keyboard with lsusb.
lsusb
Sample return :
Bus 001 Device 001: ID 046d:c331 Logitech, Inc.
In this sample VendorID is 046d and ProductID is c331. Now test your keyboard with all supported protocol :
ledkeyboard -dv 046d -dp c331 -tuk 1 -a 000000
If your keyboard set all key to off you have found the protocol (1), if not continue.
ledkeyboard -dv 046d -dp c331 -tuk 2 -a 000000
If your keyboard set all key to off you have found the protocol (2), if not continue.
ledkeyboard -dv 046d -dp c331 -tuk 3 -a 000000
If your keyboard set all key to off you have found the protocol (3), if not, need new dump.

Building and linking against the libg810-led library :

Include in implementing source files.

#include "Keyboard.h"

To link, simply provide -llibledkeyboard to the build flags.

To build the g810-led application as a dynamically-linked variant, run the target:
make bin-linked

Dumps :

Dumps of keyboards are now stored in a separate project to preserve a small download size of this project. You can find them here : https://github.com/MatMoul/g810-led-resources