NextWindow Touch Screen Working on Linux
This page explains how to get a NextWindow touch frame working under Linux on the X Windows system. This has so far been tested on the
Knoppix (based on Debian) distribution.
Requirements
Linux 2.6 kernel series
evdev module compiled in the kernel or loaded as a module
Generic Event Device Input Driver installed. Was available
here
Instructions
Now that you have established the event device the Touch Frame is on, you need to
modify the XF86Config-4 file to include an InputDevice section for the Touch Frame and
also make reference to the InputDevice in the ServerLayout section (see example below).
Example XF86Config-4 excerpt
Section "InputDevice"
Identifier "NW Touchscreen"
Driver "evdev"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/event2"
Option "MinX" "0"
Option "MaxX" "32767"
Option "MinY" "0"
Option "MaxY" "32767"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "NW Touchscreen"
InputDevice "PSAUX Mouse"
InputDevice "USB Mouse"
EndSection
|