Created
May 20, 2016 16:54
-
-
Save rhizoome/20b8b13be086357018b9bb4ea3d581f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sh | |
import re | |
evtest = sh.evtest("/dev/input/event9", _bg=True) | |
cur_slot = 0 | |
slots = [0] * 10 | |
tools = set() | |
slots.append(tools) | |
re_split = re.compile("[()]") | |
for line in evtest: | |
if line.startswith("Event:"): | |
line = line.strip() | |
if "ABS_MT_SLOT" in line: | |
value_part = line.split(",")[3].strip() | |
value = int(value_part.split("value")[1]) | |
cur_slot = value | |
if "BTN_" in line: | |
split = line.split(",") | |
value_part = split[3].strip() | |
value = int(value_part.split("value")[1]) | |
tool = re.split(re_split, split[2])[1] | |
if value == 1: | |
tools.add(tool) | |
else: | |
tools.remove(tool) | |
print(slots) | |
if "ABS_MT_TRACKING_ID" in line: | |
value_part = line.split(",")[3].strip() | |
value = int(value_part.split("value")[1]) | |
if value == -1: | |
if slots[cur_slot] == 1: | |
slots[cur_slot] = 0 | |
print(slots) | |
else: | |
if slots[cur_slot] == 0: | |
slots[cur_slot] = 1 | |
print(slots) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment