Skip to content
Snippets Groups Projects
Commit 6eeae23e authored by Peter Hutterer's avatar Peter Hutterer
Browse files

examples/evtest: fix LED handling, still had the old API

parent 9bc0e690
No related branches found
No related tags found
1 merge request!1Add support for LED writing
......@@ -22,7 +22,7 @@ def print_capabilities(l):
for c in cs:
if t in [libevdev.EV_LED, libevdev.EV_SND, libevdev.EV_SW]:
v = l.event_value(t, c)
v = l.value[c]
print(" Event code {} ({}) state {}".format(c.value, c.name, v))
else:
print(" Event code {} ({})".format(c.value, c.name))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment