There was the same problem a few days ago, and we found this workaround.
You can do the following command on the terminal:
cat /proc/bus/input/devices
Your devices will be listed in this list, and your devices should be listed. For example, for me, one element appears:
I: Bus=0011 Vendor=0002 Product=000a Version=0000 N: Name="TPPS/2 IBM TrackPoint" P: Phys=synaptics-pt/serio0/input0 S: Sysfs=/devices/platform/i8042/serio4/serio5/input/input15 U: Uniq= H: Handlers=mouse1 event15 B: PROP=0 B: EV=7 B: KEY=70000 0 0 0 0 B: REL=3
In the "Handlers" section, you will notice that event15 appears. You can access the data stream by specifying / dev / input / event 15 in my case. You will need to find out what is in your case.
Lee torres
source share