You are not logged in.
Pages: 1
Hi folks,
we have a eGalax USB-Touchscreen @ olimex-lime2. After many hours it's working now. But on issue stays hardly:
The cursor works but we have no click event when we touch the screen.
The only solution is:
echo 3 0eef 0001 16 > /sys/bus/hid/drivers/hid-multitouch/new_idunplug and plug the usb cable and the touch is working perfectly. But how can we do this without unplug/plug.
The Screen and the olimex are in cabinet und unplugging is not possible.
Thx...
Offline
Hi,
You can do, as root:
echo 0 > /sys/bus/usb/devices/X-Y/authorized && sleep 1 && echo 1 > /sys/bus/usb/devices/X-Y/authorized
Before doing that, ensure of the numbers to replace X, Y and Z, with the help of lsusb.
i.e: if I want to reset my mouse (logitech):
~>>> lsusb |grep Logitech
Bus 003 Device 005: ID 046d:c069 Logitech, Inc. M-U0007 [Corded Mouse M500]Now, you know X eq 3.
to find Y, do :
~>>> for a in /sys/bus/usb/devices/3-*/manufacturer; do grep -q Logitech $a && echo $a; done
/sys/bus/usb/devices/3-4/manufacturernow, Y is 4, then, as root:
# echo 0 > /sys/bus/usb/devices/3-4/authorized && sleep 1 && echo 1 > /sys/bus/usb/devices/3-4/authorizedit should be enough
Offline
This works...
Thx ;-)
Offline
:-) You're welcome !
Please, edit the subject to let know this is solved.
Offline
Pages: 1