seeing how any number I use at the end of the device ends up as 0 by the driver, I attempted to create a udev rule to always make it end in 0:
Code:
KERNEL=="event*", SUBSYSTEM=="input", ATTRS{idVendor}=="0eef", ATTRS{idProduct}=="0001", KERNELS=="1-1", SYMLINK+="input/tsleft0"
KERNEL=="event*", SUBSYSTEM=="input", ATTRS{idVendor}=="0eef", ATTRS{idProduct}=="0001", KERNELS=="1-2", SYMLINK+="input/tsfront0"
I derived this from the evtouch udev rules and added the "KERNELS==" to uniquely identify it by the USB port.
The problem is now, I can no longer cat the device and get any input using the symlink or the actual device... The same applies if I create symlinks for /dev/usb/hiddev[0-1] or /dev/hidraw[1-2].
Anyone have any ideas on what else I can try?
PS: The evtouch driver has no support for multiple screens.
Bookmarks