aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilip Wieladek <wattos@gmail.com>2013-05-12 10:29:15 +0200
committerFilip Wieladek <wattos@gmail.com>2013-05-12 10:29:15 +0200
commit104ff6cde9efbebe70907d4f3c4190de29017d77 (patch)
tree3841477ef83a5c4cb623accd14b6557599c36ce0
parentcb8097c9adb6ab82be2ab8266fbcc9802833b970 (diff)
parent36970df83317a81ee8d579384a509a463cb38a16 (diff)
Merge branch 'master' of github.com:Wattos/logitech-g710-linux-driver
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0d75009..4dd356b 100644
--- a/README.md
+++ b/README.md
@@ -58,10 +58,12 @@ echo -n "5" > /sys/bus/hid/devices/0003:046D:C24D.XXXX/logitech-g710/led_macro
</pre>
Writing the led_keys is a bit more involved. The file expects a single digit which is constructed in the following way:
-value= wasd << 4 | key
+<pre>
+value= wasd &lt;&lt; 4 | key
where:
wasd - WASD light intensity
key - Other key light intensity
-Only values from 0-4 accepted \ No newline at end of file
+Only values from 0-4 accepted
+</pre>