Hi everybody,
I recently bought a Aiptek Slim Tablet 600U. It's a graphic tablet for pen driven applications.
It works like a charm under VISTA but I can't get it to work correctly under (Feisty - Studio actually). I tried downloading and installing the aiptek driver package (kernel and X-Server). I configured the xorg.conf to use the driver and also managed to install a /dev/input/aiptek entry in the devices. However the kernel module does not pick up the tablet.
I know this tablet is not listed in the supported tablet of the aiptek driver. Does anybody know which driver I can use to get the tablet to work?
My main concern is to get absolute coordinates from the tablet rather then the relative ones I get now. This would make using the tablet much more natural. Maybe I can configure this in the xorg.conf by specifying a different driver (I believe installs the tablet using the xpad driver as a mouse input device)? Any help would be appreciated.
TIA.
Cheers,
Marcel
Hi
I have not yet tried it but this is the only possible solution I have found sofar.
from : localhost/sourceforge.net/projects/xf86digitaledge/
I will try ot soon and report then.I would say do the same . . .
Jan
another link
from : localhost/www.linuxforen.de/forums/arch...p/t-37573.html
next link
from : localhost/sourceforge.net/project/downl...c.rpmamp;53376324
Hi Jan,
I already tried the aiptek kernel and xorg drivers. My problem is that apparently the driver gets not loaded with this tablet. The vendor id of this thing is some
Waltop International Corp.
which is not listed in the aiptek module code.
Any other ideas how to get this tablet to work? Are there generic tablet drivers?
Cheers,
Marcel
Please do exactly as given in the thread:
from : localhost//showthread.php?t=122735
but change input/aiptektablet by input/aiptek (there is a bug in X server with long input names)
That should work, if that does not work, nothing will. Note that the thread explains how the vendor id must be used to eg setup a udev rule.
Benny
Thanks everybody for your help. I actually got my tablet working now as I wanted it (absolute coordinates are sent).
The trick was to use the wacom driver instead of the aiptek driver.
Cheers,
Marcel
Originally Posted by mr.garfieldThe trick was to use the wacom driver instead of the aiptek driver.
Hi,
I've a brand new Aiptek 14000U tablet which reveals being a Waltop Media Tablet as your Slim Tablet 600U. I did as you did (explanation HERE) an it works. Not the stylus button which reacts differently as I wrote in the post.
Did you get the stylus button work as you want ?
Thanks
To get the Aiptek Slim Tablet 600u working with 8.04 (by default it works in relative mode along with the mouse):
Added a new udev rule:
Code:
root@team-jj:/home/jj# cat /etc/udev/rules.d/66-aiptek.rules
BUS==quot;usbquot;, KERNEL==quot;event[0-9]*quot;, SYSFS{idVendor}==quot;172fquot;, \ SYMLINK+=quot;input/aiptekquot;, OWNER=quot;rootquot;, MODE=quot;0666quot;
/etc/init.d/udev restart
Check /dev/input for the new aiptek symlink. You can 'cat' this, and then fiddle with the tablet to check that you make lots of binary data.
(the necessary magic vendor number was groked from cat /proc/bus/input/devices), you could probably also put the quot;idProduct=0031quot; in there as well. You almost certainly should if you might get another Aiptek/Waltop device. It identifies itself in dmesg as WALTOP type.
Installed the wacom-tools.
Modified my /etc/X11/xorg.conf :
(all irrelevant sections emitted, be careful with this - if you mistype, you won't have a GUI anymore, and will have to fix from console)
Code:
Section quot;InputDevicequot; Identifier quot;aiptekquot; Driver quot;wacomquot; Option quot;Devicequot; quot;/dev/input/aiptekquot; Option quot;Typequot; quot;stylusquot; Option quot;USBquot; quot;onquot; Option quot;TopXquot; quot;0quot; Option quot;TopYquot; quot;0quot; Option quot;BottomXquot; quot;10000quot; Option quot;BottomYquot; quot;6250quot; Option quot;MaxXquot; quot;10000quot; Option quot;MaxYquot; quot;6250quot;
EndSection
Section quot;ServerLayoutquot;
Identifierquot;Default Layoutquot; screen quot;Default Screenquot;
Inputdevicequot;Generic Keyboardquot;
Inputdevicequot;Configured Mousequot;
Inputdevicequot;aiptekquot;quot;SendCoreEventsquot;
#Inputdevicequot;stylusquot;quot;SendCoreEventsquot;
#Inputdevicequot;cursorquot;quot;SendCoreEventsquot;
#Inputdevicequot;eraserquot;quot;SendCoreEventsquot;
EndSection
Err... and I think that was it!
Restart X-server with Ctrl-Alt Backspace..
Just as a note, the aiptek goes to sleep if left alone for a minute or two, to wake up just depress the pen nib and wait a few seconds.
This thread was the first google search for 'ubuntu aiptek 600u', so I thought I'd come here and put the latest info.
As bought for 50 British smackers on amazon.co.uk and put to immediate good work in Gimp amp; inkscape!
Thanks for the information jarvist, the Wacom driver does the trick. Except for one thing: the two buttons on the stylus are now both interpreted as the middle button.
Without the modifications to xorg.conf, the tablet is (mis)recognised as a mouse device, and in this situation each stylus button is interpreted as buttons two and three, the point being button one. The pressure sensitivity only works with the Wacom driver configured, but both buttons produce button two events, and the third button is lost. Has anyone found a way to correctly interpret the two stylus buttons? |