Dear Psychtoolbox community,
I am trying to set up a configuration with multiple touch screens; however, I am hitting a wall right now and am wondering if anybody did try this before and likes to share the experience.
Right now, I am testing with Xubuntu 18.04, and I was able to present stimuli on 5 different screens. I am failing in the configuration of the touch screens, tried to use xinput to map them to the corresponding screens. Xinput lists two touchscreens I have connected right now:
$ xinput --list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Elo TouchSystems, Inc. Elo TouchSystems 2700 IntelliTouch(r) USB id=6 [slave pointer (2)]
⎜ ↳ Logitech USB Optical Mouse id=9 [slave pointer (2)]
⎜ ↳ Weida Hi-Tech CoolTouch System id=10 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Logitech USB Keyboard id=7 [slave keyboard (3)]
↳ Logitech USB Keyboard id=8 [slave keyboard (3)]
However, Matlab only recognizes one (and the Touchscreen demo works for this one):
>> GetTouchDeviceIndices()
ans =
8
>> GetTouchDeviceInfo(8)
ans =
struct with fields:
touchDeviceType: 1
maxTouchpoints: 15
product: 'Weida Hi-Tech CoolTouch System '
serialNumber: []
locationID: 2
valuatorInfos: [1×4 struct]
The screens are configured as separate X server processes and this part works fine, but how can I use multiple touch screens as input devices? I tried options with xinput so far without success, I am looking into potential multi-seat configurations but get the impression that this is an overall outdated approach.
Has anybody some pointers how to best approach this? Could it just be that the Elo Touchscreen is the troublemaker and does not work well with Linux?
Any help is much appreciated!
thanks,
wolf