Innovatek TM-868

From LinuxMCE
Revision as of 13:51, 16 September 2007 by Chriss (Talk | contribs)

(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

Hardware description

THis is an 8" touchscreen with a resolution of 640x480. It has a VGA, a RCA video, two RCA audio and a USB connector. It works with the eGalax drivers

Installation

The installation was pretty easy, since Ubuntu seems to support touchscreens out of the box. However, because the axis were swapped and I had to calibrate that thing I had to manually configure it.

First, download the driver files from http://www.nextabyte.com/support/touchscreen/evtouch-current.tar.gz, after extracting them copy the driver file "evtouch_drv.so" to the input driver directory of xorg (/usr/lib/xorg/modules/input) and than switch to KDE desktop and from xterm run the program "calibrator" from the driver package. After touching the four points on the screen it will output the coordinates you have to add to your xorg.conf. In my case I had to swap the Y-values. This is, what I added to my xorg.conf:

Section "InputDevice"
    Identifier	"TouchScreen0"
    Driver	"evtouch"
    Option	"Device" "/dev/input/touchscreen"
    Option	"MinX" "1925"
    Option	"MinY" "41"
    Option	"MaxX" "97"
    Option	"MaxY" "1721"
    Option	"ReportingMode" "Raw"
    Option	"SendCoreEvents"
EndSection

and to make the beast work as an input device I added the line about the touchscreen here:

Section "ServerLayout"
    Identifier     "XFree86 Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
    # add the following line
    InputDevice	   "TouchScreen0" "CoreTouch"
EndSection

after reloading the X-server it works like charm...