User:Awerner/Touchscreen

From ArchWiki

If you ever tried to set up a touchscreen device in linux, you might have noticed that it's either working out of the box (besides some calibration) or is very tedious, especially when it isn't supported by the kernel.

Kernel drivers

This article assumes that your touchscreen device is supported by the kernel (e.g. by the usbtouchscreen module). That means there exists a /dev/input/event* node for your device. Check out

less /proc/bus/input/devices

to see if your device is listed or try

cat /dev/input/event? # replace ? with the event numbers

for every of your event nodes while touching the display.

If you found the corresponding node, it's likely that you will be able to get the device working.

X11 drivers

evdev

If you have the xf86-input-evdev driver installed, Xorg should automatically recognize all HID-compliant and some non HID-compliant touchscreens.

You can verify this with the command

xinput list

to see if your touchscreen is listed. If you are unsure what the name of your touchscreen is, have a look at the detailed output from

xinput list --long

and look for devices where the mode is absolute.

Note: All touchscreens that were recognized by the evtouch driver should also be recognized by evdev.

Other drivers

There are a lot of touchscreen input drivers for X11 out there. The most common ones are in the extra repository:

Less common drivers, not contained in the repository, are:

  • xf86-input-magictouch
  • xf86-input-plpevtch
  • xf86-input-palmax,
  • xf86-input-elo2300 (*)
  • xf86-input-microtouch (*)

(Note: (*) are deprecated and thus were removed from the repos [1])

Some for some devices proprietary drivers exists as well, as e.g. xf86-input-egalaxAUR but it's recommended to try the open source drivers first.

Depending on your touchscreen device choose an appropriated driver.

evtouch drivers

First, install xf86-input-evtouchAUR from the AUR.

This package already includes a set of udev rules to create a permanent node for your input device in /etc/udev/rules.d/69-touchscreen.rules.

If everything worked fine so far, you should have a symlink /dev/input/evtouch_event to your input device. If not, your touch device might not work with evtouch, but you can add a custom udev rule for your device and try it anyway.

In case you configured X server to use HAL hot-plugging, the touchscreen should work now after restarting the X server. Else you have to add the corresponding "InputDevice" section to xorg.conf as described on evtouch's webside.

Calibration

It's assumed that you have the touchscreen working now in X11 and that you're using hot-plugging for configuration. If you manually set up your input devices and thus switched off hot-plugging, you have to add the X11 options of this section to the xorg.conf file instead (see evtouch's webside for details again).

Rough calibration

For touchscreen calibration the xf86-input-evtouchAUR package includes a calibration program.

sudo /usr/lib/xf86-input-evtouch/calibrate.sh

No matter whether you started it from TTY or X11, this will start a new X server and bring up a white screen. Move the pen around the display border, along all edges a view times to get the minimum and maximum coordinates. Press Return. Then tab exactly on the red cross. The next cross will turn red, touch it again and repeat this procedure for all crosses. When your done you should return to command line. The calibration data was written to /etc/evtouch/config.

To restore the calibration data after booting add evtouch_config to the DAEMONS variable in /etc/rc.conf

DAEMONS=( ... evtouch_config ... )

This will read the calibration data from /etc/evtouch/config and set the corresponding X options using HAL.

You can now (re)start your X server and enjoy your calibrated touchscreen.

Fine calibration (optional)

If your not satisfied with the calibration you can do further tweaking by changing the values in /etc/evtouch/config manually. MINX, MINY, MAXX, MAXY are the minimal and maximal coordinates and the nine X?,Y? pairs are the coordinates of the calibration points in the order you touched them.

Correct orientation of the coordinate system

The 9 point calibration assures that the coordinate axis are orientated in a way that your cursor moves to the right when your pen does (due to the signs of the X,Y pairs). In case you nevertheless notice your cursor is moving in the wrong direction you can add

hal_set swapx 1
hal_set swapy 1

to /etc/rc.d/evtouch_config (of course this will get overwritten when you upgrade the package)

When X and Y axis are swaped and your touchscreen uses the usbtouchscreen kernel module you can add the following line to /etc/modprobe.d/modprobe.conf

options usbtouchscreen swap_xy=1

Make the calibration persistent to unplugging or suspending

You may notice that after unplugging the touch device and replugging it while the X server is running, your calibration is messed up. The same happens when you resume from hibernation or suspend.

The reason is, that your calibration setting get set only once, at boot time by evtouch_config. When you unplug it the settings are removed when evtouch is unloaded. On plugging it in HAL sets the default settings as specified in /usr/share/hal/fdi/policy/20thirdparty/50-....fdi and loads the evtouch driver, which reads the calibration settings into its memory. Therefore it doesn't work to simply call evtouch_config while the X window system is running.

The only way I found to make the calibration settings survive a replug-in or a hibernation is to set them directly in the HAL policy file. The following command converts the calibration settings to HAL policy format and prints the result on stdout.

awk -F= '{print "        <merge key=\"input.x11_options."tolower($1)"\" type=\"string\">"$2"</merge>"}' /etc/evtouch/config

Replace the corresponding merge commands in the policy file (/usr/share/hal/fdi/policy/20thirdparty/50-....fdi) corresponding to your device.

Of course you don't need the evtouch_config daemon any more when you use this method, so you can remove it from /etc/rc.conf.

Note: when you have problems with right clicking or drag and drop you can try tweaking the settings ([2] [3]) in the fdi file. You can also set the swapx, swapy options here in case you need them.

WARNING: The fdi files will be overwritten when you upgrade xf86-input-evtouchAUR, so all your changes will be lost.