Hi everyone,
In 0.4, we introduced multitouch support on Windows (WM_Touch and
WM_Pen), on MacOSX... but not on Linux.
That's done now ! In latest master, you have a new input provider: HIDInput.
A fast video :
http://vimeo.com/11342272
If you have a multitouch screen (Acer T230H, Ntrig, Stantum, 3M...),
on the latest kernel, they have already drivers for them. Just modify
your configuration to add your device:
[input]
acer = hidinput,/dev/input/event2
stantum = hidinput,/dev/input/event6
# And prevent them to do some jitter processing :
[pymt]
jitter_ignore_devices = mouse,acer,stantum
You must have read access to your device. Just try with:
cat /dev/input/event2
If you got permission denied, you can create a specific udev rules.
Here is 2 rules for Acer and Stantum screen :
SUBSYSTEM=="input", SYSFS{idVendor}=="0408", MODE="0644",
SYMLINK="input/event-acer"
SUBSYSTEM=="input", SYSFS{idVendor}=="1f87", MODE="0644",
SYMLINK="input/event-stantum"
Theses rules will also create a symlink to /dev/input/event-acer +
/dev/input/event-stantum.
I'll put this on a wiki page.
Enjoy !
Mathieu
--
You received this message because you are subscribed to the Google Groups "pymt-dev" group.
To post to this group, send email to
pymt...@googlegroups.com.
To unsubscribe from this group, send email to
pymt-dev+u...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/pymt-dev?hl=en.