You are not logged in.

#1 2006-03-26 03:59:38

Galdona
Member
Registered: 2006-03-15
Posts: 196

please help with wacom graphire

I am using Xorg7 and kernel 2.6.15.

i have a graphire3, it sort of works, but not properly*.
*(the active area is smaller than useable area on tablet, about only two-thirds width and height, and the active area moves around, depending on where i put the pen down. also no pressure sense)

i tried following this. but it is not working for me. i am not sure what to do...

the instructions in the linuxwacom site i cannot understand, only a bit, and its very confusing for me.

i have already copied the wacom_drv.so to /usr/lib/xorg/modules/input/,
and i have already added this to xorg.conf:

 Section "InputDevice" 
        Driver      "wacom" 
        Identifier  "cursor" 
        Option      "Device"          "/dev/input/event3" 
        Option      "Type"            "cursor" 
        Option      "USB"             "on" 
        Option      "Vendor"          "WACOM" 
EndSection 

Section "InputDevice" 
        Driver      "wacom" 
        Identifier  "stylus" 
        Option      "Device"          "/dev/input/event3" 
        Option      "Type"            "stylus" 
        Option      "USB"             "on" 
        Option      "Vendor"          "WACOM" 
EndSection 

Section "InputDevice" 
        Driver      "wacom" 
        Identifier  "eraser" 
        Option      "Device"          "/dev/input/event3" 
        Option      "Type"            "eraser" 
        Option      "USB"             "on" 
        Option      "Vendor"          "WACOM" 
EndSection 

this is what i get from the "more /proc/bus/input/devices"
command:

I: Bus=0003 Vendor=056a Product=0013 Version=0314
N: Name="Wacom Graphire3"
P: Phys=
S: Sysfs=/class/input/input3
H: Handlers=mouse1 event3
B: EV=f
B: KEY=1c43 0 70000 0 0 0 0 0 0 0 0
B: REL=100
B: ABS=3000003

please, if you have your wacom working, i hope you can give me some straightforward instructions that do not assume that i have much knowledge about how linux works...

please help... sad

Offline

#2 2006-03-26 17:25:37

whompus
Member
From: Durham. UK
Registered: 2005-08-09
Posts: 256

Re: please help with wacom graphire

I used the wacom driver that is in the AUR but don't know if it makes any difference.

Here's the relevant sections of my xorg.conf

Section "ServerLayout"

    InputDevice "mouse"     "SendCoreEvents"
    InputDevice "cursor"     "SendCoreEvents"
    InputDevice "stylus"     "SendCoreEvents"
    InputDevice "eraser"     "SendCoreEvents"
    Identifier     "Simple Layout"
    Screen      0  "aticonfig Screen 0" 0 0
    InputDevice    "Mouse1" "CorePointer"
    InputDevice    "Keyboard1" "CoreKeyboard"
EndSection

Section "Module"
    Load  "dbe"
    SubSection "extmod"
        Option        "omit xfree86-dga"
    EndSubSection
    Load  "type1"
    Load  "freetype"
    Load  "glx"
    Load  "dri"
        Load  "wacom"
EndSection

Section "InputDevice"
  Driver    "wacom"
  Identifier    "mouse"
  Option    "Device"    "/dev/input/event2"
  Option    "InputFashion"    "Tablet"
  Option    "Mode"        "Relative"
  Option    "Name"        "Graphire / Intuos (USB)
  Option    "SendCoreEvents"    "on"
  Option    "Tilt"        "on"
  Option    "Type"        "cursor"
  Option    "USB"        "on"
  Option    "ZAxisMapping"    "4 5"
  Option    "Speed"        "1.0"
  Option    "WACOM"
EndSection


Section "InputDevice"
  Driver    "wacom"
  Identifier    "cursor"
  Option    "AlwaysCore"    "on"
  Option    "Device"    "/dev/input/event2"
  Option    "InputFashion"    "Tablet"
  Option    "Mode"        "Absolute"
  Option    "SendCoreEvents"    "on"
  Option    "Tilt"    "on"
  Option    "Type"        "cursor"
  Option    "USB"        "on"
EndSection


Section "InputDevice"
  Driver    "wacom"
  Identifier    "stylus"
  Option    "Device"    "/dev/input/event2"
  Option    "InputFashion"    "Pen"
  Option    "Mode"        "Absolute"
  Option    "Protocol"    "Auto"
  Option    "SendCoreEvents"    "on"
  Option    "Tilt"        "on"
  Option    "Type"        "stylus"
  Option    "USB"        "on"
EndSection


Section "InputDevice"
  Driver    "wacom"
  Identifier    "eraser"
  Option    "Device"    "/dev/input/event2"
  Option    "InputFashion"    "Eraser"
  Option    "Mode"        "Absolute"
  Option    "Protocol"    "Auto"
  Option    "SendCoreEvents"    "on"
  Option    "Tilt"        "on"
  Option    "Type"        "eraser"
  Option    "USB"        "on"
EndSection

Offline

#3 2006-03-27 14:35:12

Galdona
Member
Registered: 2006-03-15
Posts: 196

Re: please help with wacom graphire

thank you very much, im going to try this when i get back to my pc.  smile

Offline

Board footer

Powered by FluxBB