Touchscreen (简体中文)

From ArchWiki
Jump to: navigation, search
Tango-preferences-desktop-locale.png 本页面或部分需要翻译,部分内容可能已经与英文文章脱节。如果您希望贡献翻译,请访问简体中文翻译组
附注: please use the first argument of the template to provide more detailed indications.
Tango-preferences-desktop-locale.png
Tango-dialog-warning.png This article or section is out of date.
Reason: please use the first argument of the template to provide a brief explanation. (Discuss)
Tango-dialog-warning.png

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.

Contents

介绍

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 驱动

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-egalax but it's recommended to try the open source drivers first.

Depending on your touchscreen device choose an appropriated driver.

The evtouch input drivers support a wide variety of touchscreens from different vendors like Fujitsu, eGalax, IDEACO, ITM, Touchkit.

Since I've only got one touchscreen device (USB 0eef:0001 D-WAV Scientific Co., Ltd eGalax TouchScreen) which works with the evtouch driver I confine myself to this driver. Perhaps someone can add details about how to set up other drivers.

evtouch 驱动

First, install xf86-input-evtouch 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.

校准

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).

粗略校准

For touchscreen calibration the xf86-input-evtouch 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.

精确校准 (可选)

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.

校准坐标系统方向

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

使校准不受拔出或待机影响

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 do not 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-evtouch, so all your changes will be lost.

在多显示器设置中使用触摸屏

To use multiple displays (some of which are touchscreens), you need to tell Xorg the mapping between the touch surface and the screen. This can be done using xinput to set the touchscreen's coordinate transformation matrix, as described in the X.Org Wiki.

You will need to run the xinput command every time you attach the monitor. You can use Udev to automate this; more details to follow once I get it working myself.

Note: If, after following these instructions, multiple clicks occur in different places when you touch the screen, you will need to build the xorg-server package using the ABS, applying this patch before you build the package.