Difference between revisions of "Wacom Serial Tablet PC Stylus"
(new script) |
(→modified script) |
||
Line 345: | Line 345: | ||
</pre> | </pre> | ||
+ | --[[User:Dominiks|Dominiks]] 18:47, 17 April 2010 (UTC) | ||
==Troubleshooting== | ==Troubleshooting== |
Revision as of 19:47, 17 April 2010
Wacom Serial Tablet PC StylusThis is a stylus made for tablet PCs by Wacom. Features
|
Linux Support
The pen is supported by the XFree/Xorg Wacom driver. New tablets also have the MultiTouch capability. MultiTouch is experimentally supported presently by the Linux wacom project. The pen works regardless of MultiTouch support.
Fist steps
Get the linux wacom driver and install it on your system.
The pen uses serial and appears on some /dev/ttySnn device where nn is a number. An easy way to find it is to map /dev/ttyS0 to the pen's port and irq. The values can be found under the windows driver properties. Using values from an X41 Tablet 1869-5CU, the command is: # setserial /dev/ttyS0 port 0x0200 irq 5 autoconfig
(you need to run this after every suspend/resume cycle).
This may be inserted into startup scripts in /etc/rc.d/ or /etc/rc.local
After mapping the pen, you can check its output with # wacdump -f tpc /dev/ttyS0
. This will list raw information about the pens position an click status. Hit Ctrl+C to exit wacdump.
Setting up your Xorg.conf
Now that you see the pen working correctly you should configure your Xserver to use the stylus. Add the following sections to your xorg.conf:
Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/ttyS0" Option "Type" "cursor" Option "ForceDevice" "ISDV4" Option "Mode" "Absolute" EndSection Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/ttyS0" Option "Type" "stylus" Option "ForceDevice" "ISDV4" EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/ttyS0" Option "Type" "eraser" Option "ForceDevice" "ISDV4" EndSection
# support for "touch" (with finger, available on x200t and some x61t) Section "InputDevice" Driver "wacom" Identifier "touch" Option "Device" "/dev/ttyS0" # SERIAL ONLY Option "Type" "touch" Option "ForceDevice" "ISDV4" # Serial Tablet PC ONLY EndSection
Section "ServerLayout" Identifier "Default Layout" Screen 0 "Default Screen" 0 0 InputDevice "Configured Mouse" "CorePointer" InputDevice "cursor" "SendCoreEvents" InputDevice "stylus" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" #InputDevice "touch" "SendCoreEvents" #Uncomment if you have this feature. EndSection
Check the wacom driver man page and website for other options.
For handwriting recognition using pen you can use CellWriter.
To get the right mouse button to map to the stylus button use this script and run it through .bashrc
#!/bin/bash xsetwacom set stylus Button1 1 xsetwacom set stylus Button2 3 xsetwacom set stylus Button3 3
Wacomcpl
I found it useful to create a .desktop file for launching the wacomcpl program which is used for many user options for the tablet pen.
[Desktop Entry] Type=Application Encoding=UTF-8 Name=wacomcpl GenericName=linux wacom config Comment=linux wacom configuration tool TryExec=wacomcpl Exec=wacomcpl Terminal=false Categories=System; Icon=wacomcpl.png
To have your settings restore after logout/suspend/restart you will need to edit /home/yourusername/.xinitrc. Go to the last line and change
. /etc/X11/xinit/xinitrc
to read as
# . /etc/X11/xinit/xinitrc
Next you need to create a new sessions preference to load the user file.
For Debian [lenny] go to System > Preferences > Sessions. Add a new startup program and add the command
sh /home/yourusername/.xinitrc
click ok.
For Ubuntu use System > Preferences > Startup Applications. add the same startup program as above.
--Jeremy! 14:49, 29 October 2009 (UTC)
xrandr Rotation
There is work underway to create a Tablet Screen Rotation Support package for Ubuntu. Because I can afford only one tablet computer, and since this is relatively new and not many others have put any work into it yet, so far it mainly supports the Lenovo Thinkpad X61 Tablet. The next phase of development involves refactoring in such a way that it can easily be expanded to support other brands and models of tablet computer. The planned mechanism is similar to that used by the scripts in the Debian acpi-support package.
So far, it supports auto-rotation on conversion from laptop to tablet mode, including rebinding the navpad keys and turning the logical orientation of the Wacom tablet to match. It is done as an event called when the X Server has changed it's xRandR orientation. The actual work is carried out by a quick set of shell scripts that can easily be adapted and extended. The idea is that no matter what piece of software actually caused the X Server to rotate, the same things need to happen whenever it does. So the best place to hook in the support event is on an event handler for the RandR Rotate event. The programs and packaging are simple, and the source is available at the URL above. I encourage you to get a copy and learn from it while helping make it work for a new kind of tablet no other developer has created support for yet! If you can write an essay, you can write the necessary program.
Because this ThinkWiki page is one of the sources I drew from when I initially created tablet-screen-rotation-support. The following scripts by Gtx, radix, and Papertiger probably contain some elements in common. --KarlHegbloom 21:55, 9 February 2009 (UTC)
xrotate support scripts
linuxwacom is very buggy. I needed some time to get the tablet work with "xrandr -r". I use the script below to do screen rotation. copy the source an put it in /usr/local/bin/xrotate. You may change output and devices to fit to you're system (the default values work fine for an x41 tablet)
you can use "xrotate +" to rotate the screen CCW or "xrotate -" to rotate clockwise. use "xrotate x" where x is
- 0 to set rotation to normal
- 1 to set rotation to left
- 2 to set rotation to inverted
- 3 to set rotation to right
#!/bin/sh output=LVDS if [ "$XROT_OUTPUT" ] then output=$XROT_OUTPUT; fi devices="stylus cursor" geomnbr=0 xrandr=normal wacom=normal if [ "$1" == "-" ] || [ "$1" == "+" ] || ! [ "$1" ]; then operator="$1"; [ "$1" ] || operator='+'; case `xrandr --verbose | grep "^$output " | sed "s/^[^ ]* [^ ]* [^ ]* ([^(]*) \([a-z]*\).*/\1/"` in normal) geom=0;; left) geom=1;; inverted) geom=2;; right) geom=3;; esac let geom=${geom}${operator}1+4 let geom=${geom}%4 else geom="$1" fi case $geom in 1) wacom=2; xrandr=left ;; 2) wacom=3; xrandr=inverted ;; 3) wacom=1; xrandr=right ;; *) wacom=0; xrandr=normal ;; esac echo "xrandr to $xrandr, xsetwacom to $wacom" >&2 if xrandr --output "$output" --rotate "$xrandr"; then for d in $devices do xsetwacom set "$device" Rotate "$wacom" done fi #workaround for linuxwacom bug if [ "`xsetwacom get stylus Mode`" == '1' ]; then for d in $devices do xsetwacom set stylus CoreEvent "off" xsetwacom set stylus Mode "off" done { sleep 1; for d in $devices do xsetwacom set stylus Mode "on" xsetwacom set stylus CoreEvent "on" done; } & fi
--Gtx 13:34, 22 April 2008 (CEST)
modified script for linuxwacom 0.8.1-1.
#!/bin/sh output="(normal left inverted right)" #LVDS # if [ "$XROT_OUTPUT" ] # then # output=$XROT_OUTPUT; # fi devices="stylus cursor" geomnbr=0 xrandr=normal wacom=normal if [ "$1" == "-" ] || [ "$1" == "+" ] || ! [ "$1" ]; then operator="$1"; [ "$1" ] || operator='+'; case `xrandr --verbose | grep "$output" | sed "s/^[^ ]* [^ ]* [^ ]* ([^(]*) \([a-z]*\).*/\1/"` in normal) geom=0;; left) geom=1;; inverted) geom=2;; right) geom=3;; esac let geom=${geom}${operator}1+4 let geom=${geom}%4 else geom="$1" fi case $geom in 1) wacom=2; xrandr=left ;; 2) wacom=3; xrandr=inverted ;; 3) wacom=1; xrandr=right ;; *) wacom=0; xrandr=normal ;; esac echo "xrandr to $xrandr, xsetwacom to $wacom" >&2 if xrandr -o "$xrandr"; then for d in $devices do xsetwacom set "stylus" Rotate "$wacom" done fi #workaround for linuxwacom bug if [ "`xsetwacom get stylus Mode`" == '1' ]; then for d in $devices do xsetwacom set stylus CoreEvent "off" xsetwacom set stylus Mode "off" done { sleep 1; for d in $devices do xsetwacom set stylus Mode "on" xsetwacom set stylus CoreEvent "on" done; } & fi
--radix 13:15, 28 August 2008 (CEST)
Additional code for rotating the 4 navigation keys on the display frame.
key_up=111 key_down=116 key_left=113 key_right=114 case $geom in 1) xmodmap -e "keycode $key_up = Right";xmodmap -e "keycode $key_left = Up";xmodmap -e "keycode $key_right = Down";xmodmap -e "keycode $key_down = Left";; 2) xmodmap -e "keycode $key_up = Down";xmodmap -e "keycode $key_left = Right";xmodmap -e "keycode $key_right = Left";xmodmap -e "keycode $key_down = Up";; 3) xmodmap -e "keycode $key_up = Left";xmodmap -e "keycode $key_left = Down";xmodmap -e "keycode $key_right = Up";xmodmap -e "keycode $key_down = Right";; *) xmodmap -e "keycode $key_up = Up";xmodmap -e "keycode $key_left = Left";xmodmap -e "keycode $key_right = Right";xmodmap -e "keycode $key_down = Down";; esac
--Papertiger 22:24, 12 March 2010 (UTC)
modified script
On my X200 Tablet i have a "invert" tablet button and a "flip" button, so i modified the the script for my needs. This scripts also works with xrandr program version 1.3.2 and xsetwacom 0.10.3 under Debian Testing (Squeeze). You can call the script with "./tablet.sh flip" or "./tablet.sh invert". I mapped these two functions on the hardware buttons.
#!/bin/bash # config output="LVDS1" # get current rotation current=`xrandr --verbose | grep "$output" | sed "s/^[^ ]* [^ ]* [^ ]* ([^(]*) \([a-z]*\).*/\1/"` case $current in normal) geom=0;; left) geom=1;; inverted) geom=2;; right) geom=3;; esac if [ "$1" == "invert" ] || [ "$1" == "flip" ]; then # based on current rotation set new rotation if [ "$1" == "invert" ]; then # invert case $geom in 0) wacom=half; xrandr=inverted;; 1) wacom=cw; xrandr=right;; 2) wacom=none; xrandr=normal;; 3) wacom=ccw; xrandr=left;; esac else # flip case $geom in 0) wacom=cw; xrandr=right;; 1) wacom=half; xrandr=inverted;; 2) wacom=ccw; xrandr=left;; 3) wacom=none; xrandr=normal;; esac fi echo "xrandr to $xrandr, xsetwacom to $wacom" >&2 # rotate display xrandr -o $xrandr # rotate wacom xsetwacom set "stylus" Rotate $wacom xsetwacom set "eraser" Rotate $wacom else echo "possible parameters: flip, invert" fi
--Dominiks 18:47, 17 April 2010 (UTC)
Troubleshooting
If the stylus still doesn't work try to reset the bios. This fixed it for me. --Gtx 08:22, 21 April 2008 (CEST)
Models featuring this Device
- ThinkPad X41 Tablet
- ThinkPad X60 Tablet
- ThinkPad X61 Tablet
- ThinkPad X200 Tablet