From Rivendell Wiki
I was able to get the touchscreen working with one of the test boxes. Here
are some basic notes.
Using serial connection
NOTE: If an active USB cable is plugged into touchscreen the serial port is
disabled!
MaxX, MinX, MaxY & MinY option settings are pretty close but proper
calibration is best.
There is a program on sourceforge that we could build that will get us the
calibration.
http://sourceforge.net/project/showfiles.php?group_id=181666&package_id=2104
76
#######################################################################
Installed debian driver package for elo serial touchscreen (not for USB)
aptitude install xserver-xorg-input-elographics
Added these entries to xorg.conf
pico /etc/X11/xorg.conf
# created elo touchscreen input device
Section "InputDevice"
Driver "eloinput"
Identifier "Touchscreen"
Option "screenno" "0"
Option "ButtonNumber" "1"
Option "ButtonThreshold" "17"
Option "Device" "/dev/ttyS1"
Option "InputFashion" "Touchpanel"
Option "MaxX" "4025"
Option "MinX" "22"
Option "MaxY" "3967"
Option "MinY" "75"
Option "Name" "ELO Touchscreen"
Option "ReportingMode" "Scaled"
Option "SendCoreEvents" "on"
EndSection
# added Input Device to "ServerLayout" section
InputDevice "Touchscreen" "SendCoreEvents"
Yuri Terleckyj