Home / Programming / C / VisTablet under Debian Squeeze

VisTablet under Debian Squeeze

DSCF5570b

A new toy arrived today – the VisTablet, which is just a rebadged Aiptek 600U (model number WCK-C121). They sell as Aiptek or Waltop or Medion or any one of a few other names for about €65 on ebay.ie at the moment, so I thought what the heck, I do a fair bit of stuff in Gimp so maybe it’s worth a look. A few clicks and a week or so later and it arrives. Cue tearing open the box and unwrapping!

Plugging it into the laptop (Thinkpad R61 running Debian Squeeze amd64) got an instant result in that it found the device and allowed cursor movement… but no actual buttons or pressure sensor stuff, so it couldn’t work as a tablet. So off to google we go and after trying some frustrating messing about with udev rules (to create /dev/apitektablet – which isn’t necessary it turns out) and hal fdi files (to set up X.org options, which are needed) and I’d advanced in a posterior direction.

By now we were through the phase where plugging in the device crashed X and had reached the phase where plugging the device out crashed X. At this point, I found that the problem lay in the wacom drivers. See, just because it’s aiptek hardware doesn’t mean the aiptek drivers actually work – in this case, the wacom driver works much better.

But, just to be annoying, the new version of the wacom driver doesn’t work because it picks up that it’s not a wacom device and commits seppku to avoid being of any use. Note to the coder who thought that was a good idea – go choke on a hairball please.

Solution? Go to linuxwacom and download the latest driver, then untar the tarball, go into linuxwacom-0.8.4-2/src/xdrv and edit wcmUSB.c. You’re looking for this line (it’s line 530 in version 0.8.4.2):
[cc escaped=”true” lang=”c”]/* vendor is wacom */
if (sID[1] == 0x056A)
{[/cc]
And you want to change it to this:
[cc escaped=”true” lang=”c”]/* vendor is wacom or waltop */
if (sID[1] == 0x056A || sID[1] == 0x172f)
{[/cc]
Now apt-get install xorg-dev and whatever other packages you need like build-essential and call configure and make and then sudo make install.

You now have a working wacom driver and if you copy the wacom.fdi file into /etc/hal/fdi/policy/ (it’s /usr/share/hal/fdi/policy/20thirdparty/10-linuxwacom.fdi on Debian) and add in the following bit:
[cc escaped=”true” lang=”xml”]<match key=”info.product” contains=”WALTOP”>
<merge key=”input.x11_driver” type=”string”>wacom</merge>
<merge key=”input.x11_options.Type” type=”string”>stylus</merge>
<append key=”info.callouts.add” type=”strlist”>hal-setup-wacom</append>
<append key=”wacom.types” type=”strlist”>eraser</append>
<append key=”wacom.types” type=”strlist”>cursor</append>
<append key=”wacom.types” type=”strlist”>pad</append>
</match>[/cc]
into the <device> section of the xml file (you probably don’t need the eraser and cursor lines, but what the heck, they don’t harm anything and I was too tired of restarting X at this point to check). You should now be almost done – restart hal, restart x.org, and log back in and then plug in the tablet (check dmesg and /var/log/X.0.log so you’re sure it worked) and then fire up Gimp, go to Edit->Preferences->Input Devices->Configure Extended Input Devices and make sure the tablet is listed there and that it’s not set to disabled, then go to Edit->Preferences->Input Controllers and make sure that Linux Input is in the list of active controllers and is set to look at the tablet, and it should work.

ItWorks

Mind you… if this is what it takes to make cheap hardware work on linux, Linux Hater has a very good point.

5 Comments

  1. Hi Mark,

    I too have one of these tablets, and was wondering if/how you got the buttons on the pen to work, and if/how you got the buttons around the side of the pad to work.

    The pen buttons seem to work and be mapped to the mouse buttons, but I can’t figure out how to map them to other functions in eg The Gimp. I can’t get the buttons around the outside of the pad to do anything.


    Mark

  2. Thanks for your blog. I’ve recently come across a VisTablet PenPad. Using a patch similar to yours I get pressure sensitivity in inkscape and gimp. I’ve even submitted a patch to the linuxwacom folks, so hopefully that gets committed upstream.

    I’ve got some questions for you. Both of my buttons send the same button event (though this is not the case in MacOS). Do you see this?

    Also how does the eraser function? I’m not sure that mine has an eraser, but I’m curious.

    cheers!

  3. >seppku
    The printer neglecting most not-WACOM tablets has a reason: Almost every source file has this 2nd line:

    * Copyright 2002-2010 by Ping Cheng, Wacom Technology.

    However, linux hater has a point… though I don’t like him/her calling names (s/he entitles ‘linux users’ as lusers). Somehow I had to think about http://www.urbandictionary.com/define.php?term=name+calling

    Best,

    R

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.