Un lettore semplice e grezzo può essere fatto semplicemente usando:
#!/usr/bin/python
import struct
import time
import sys
infile_path = "/dev/input/event" + (sys.argv[1] if len(sys.argv) > 1 else "0")
"""
FORMAT represents the format used by linux kernel input event struct
See https://github.com/torvalds/linux/blob/v5.5-rc5/include/uapi/linux/input.h#L28
Stands for: long int, long int, unsigned short, unsigned short, unsigned int
"""
FORMAT = 'llHHI'
EVENT_SIZE = struct.calcsize(FORMAT)
#open file in binary mode
in_file = open(infile_path, "rb")
event = in_file.read(EVENT_SIZE)
while event:
(tv_sec, tv_usec, type, code, value) = struct.unpack(FORMAT, event)
if type != 0 or code != 0 or value != 0:
print("Event type %u, code %u, value %u at %d.%d" % \
(type, code, value, tv_sec, tv_usec))
else:
# Events with code, type and value == 0 are "separator" events
print("===========================================")
event = in_file.read(EVENT_SIZE)
in_file.close()
Il pacchetto python-evdev fornisce i collegamenti all'interfaccia del dispositivo degli eventi. Un breve esempio di utilizzo potrebbe essere:
from evdev import InputDevice
from select import select
dev = InputDevice('/dev/input/event1')
while True:
r,w,x = select([dev], [], [])
for event in dev.read():
print(event)
# event at 1337427573.061822, code 01, type 02, val 01
# event at 1337427573.061846, code 00, type 00, val 00
Tieni presente che, a differenza dei comodissimi moduli puramente Pythonic menzionati finora, evdev contiene estensioni C. Costruirli richiede l'installazione dello sviluppo Python e delle intestazioni del kernel.
Proprio qui nel modulo Input.py. Avrai anche bisogno del modulo event.py.
Il formato è descritto nel Documentation/input/input.txt
file nel sorgente Linux. Fondamentalmente, leggi le strutture del seguente formato dal file:
struct input_event {
struct timeval time;
unsigned short type;
unsigned short code;
unsigned int value;
};
type
e code
sono valori definiti in linux/input.h
. Ad esempio, il tipo potrebbe essere EV_REL
per il momento relativo di un topo, o EV_KEY
per una pressione di un tasto, e code
è il codice chiave, o REL_X
o ABS_X
per divertirti.