Results 1 to 8 of 8

Thread: Trust 5300 on 10.04 ?

  1. #1
    Join Date
    May 2008
    Location
    UK
    Beans
    1,451
    Distro
    Ubuntu 8.04 Hardy Heron

    Trust 5300 on 10.04 ?

    I have a Trust-5300 tablet, which I am trying to install on my Ubuntu 10.04 laptop.

    I have followed the instructions here :

    http://ubuntuforums.org/showthread.php?t=1437648

    and here :

    https://help.ubuntu.com/community/TabletSetupWizardpen

    Including all the trouble shooting steps and calibration, and although my laptop will recognise the device, and i get no errors in any of the kernel or X11 log files, but anytime i put the pen near the tablet (not even touching it) the cursor locks to the top left, and no movement of the pen will move the cursor, but the mouse moves the cursor just fine.

    The tablet responds well under calibration, so clearly the device driver or something is able to detect the pen at different positions on the tablet, and "clicks", but not correctly enough to drive the cursor.

    Can anyone assist ?
    Tony - Happy to try to help.
    Unless otherwise stated - all code posted by me is untested. Remember to Mark the Thread as Solved.
    Ubuntu user number # 24044 Projects : TimeWarp - on the fly Backups

  2. #2
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Trust 5300 on 10.04 ?

    Hi Tony Flurry,

    When the cursor goes to top left corner that means the coordinates are being lost, so it goes to the origin 0,0.

    You installed the driver from DoctorMO's WizardPen PPA?

    What is the output of?
    Code:
    xinput list
    
    and
    
    lsusb

  3. #3
    Join Date
    May 2008
    Location
    UK
    Beans
    1,451
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Trust 5300 on 10.04 ?

    Quote Originally Posted by Favux View Post
    Hi Tony Flurry,

    When the cursor goes to top left corner that means the coordinates are being lost, so it goes to the origin 0,0.

    You installed the driver from DoctorMO's WizardPen PPA?
    Thanks for the quick response.

    I downloaded 0.8.1 direct from Launchpad - and built and installed from there.

    What is the output of?
    Code:
    xinput list
    
    and
    
    lsusb
    xinput list
    Code:
    ⎡ Virtual core pointer                    	id=2	[master pointer  (3)]
    ⎜   ↳ Virtual core XTEST pointer              	id=4	[slave  pointer  (2)]
    ⎜   ↳ UC-LOGIC Tablet WP5540U                 	id=10	[slave  pointer  (2)]
    ⎜   ↳ USB Optical Mouse                       	id=11	[slave  pointer  (2)]
    ⎜   ↳ SynPS/2 Synaptics TouchPad              	id=13	[slave  pointer  (2)]
    ⎜   ↳ Macintosh mouse button emulation        	id=14	[slave  pointer  (2)]
    ⎣ Virtual core keyboard                   	id=3	[master keyboard (2)]
        ↳ Virtual core XTEST keyboard             	id=5	[slave  keyboard (3)]
        ↳ Power Button                            	id=6	[slave  keyboard (3)]
        ↳ Video Bus                               	id=7	[slave  keyboard (3)]
        ↳ Sleep Button                            	id=8	[slave  keyboard (3)]
        ↳ USB Video Device                        	id=9	[slave  keyboard (3)]
        ↳ AT Translated Set 2 keyboard            	id=12	[slave  keyboard (3)]
    lsusb
    Code:
    Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 002 Device 004: ID 04b3:310c IBM Corp. Wheel Mouse
    Bus 002 Device 003: ID 5543:0004 UC-Logic Technology Corp. Genius MousePen 5x4 Tablet
    Bus 002 Device 002: ID 8087:0024  
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 001 Device 005: ID 0a5c:219c Broadcom Corp. 
    Bus 001 Device 004: ID 0bda:0138 Realtek Semiconductor Corp. 
    Bus 001 Device 003: ID 174f:1442 Syntek 
    Bus 001 Device 002: ID 8087:0024  
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Tony - Happy to try to help.
    Unless otherwise stated - all code posted by me is untested. Remember to Mark the Thread as Solved.
    Ubuntu user number # 24044 Projects : TimeWarp - on the fly Backups

  4. #4
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Trust 5300 on 10.04 ?

    Alright, can you post your 70-wizardpen.conf from /usr/lib/X11/xorg.conf.d?

  5. #5
    Join Date
    May 2008
    Location
    UK
    Beans
    1,451
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Trust 5300 on 10.04 ?

    Quote Originally Posted by Favux View Post
    Alright, can you post your 70-wizardpen.conf from /usr/lib/X11/xorg.conf.d?
    Code:
    Section "InputClass"
       Identifier "wizardpen"
       MatchIsTablet "on"
       MatchDevicePath "/dev/input/by-id/usb-UC-LOGIC_Tablet_WP5540U-event-mouse"
       MatchVendor "UC-LOGIC|KYE Systems|Ace Cad|WALTOP|Waltop"
       Driver "wizardpen"
    	Option		"TopX"		"2193"
    	Option		"TopY"		"3541"
    	Option		"TopZ"		"10"
    	Option		"BottomX"	"30753"
    	Option		"BottomY"	"29581"
    	Option		"BottomZ"	"511"
    EndSection
    Section "InputClass"
       Identifier "wizardpen ignore mouse dev"
       MatchIsTablet "on"
       MatchDevicePath "/dev/input/by-id/usb-UC-LOGIC_Tablet_WP5540U-mouse"
       MatchVendor "UC-LOGIC|KYE Systems|Ace Cad|WALTOP|Waltop"
       Driver ""
    	Option		"TopX"		"2193"
    	Option		"TopY"		"3541"
    	Option		"TopZ"		"10"
    	Option		"BottomX"	"30753"
    	Option		"BottomY"	"29581"
    	Option		"BottomZ"	"511"
    EndSection
    Tony - Happy to try to help.
    Unless otherwise stated - all code posted by me is untested. Remember to Mark the Thread as Solved.
    Ubuntu user number # 24044 Projects : TimeWarp - on the fly Backups

  6. #6
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Trust 5300 on 10.04 ?

    I don't think WizardPen tells us if it is the driver in list-props but evdev will so run:
    Code:
    xinput list-props "UC-LOGIC Tablet WP5540U"
    and post. We could also check in Xorg.0.log in /var/log.

    If it is on evdev let's modify the .conf file:
    Code:
    Section "InputClass"
        Identifier "WizardPen class"
        MatchIsTablet "on"
    #    MatchVendor "UC-LOGIC|KYE Systems|Ace Cad|WALTOP|Waltop"
        MatchProduct "WP5540U"
        MatchDevicePath "/dev/input/event*"
        Driver "wizardpen"
    EndSection
    
    Section "InputClass"
        Identifier "WizardPen ignore mouse dev class"
        MatchIsTablet "on"
    #    MatchVendor "UC-LOGIC|KYE Systems|Ace Cad|WALTOP|Waltop"
        MatchProduct "WP5540U"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "yes"
    EndSection
    Since xinput list only shows one input node I'm thinking the match is already good.

    And by mouse you mean your regular mouse, not a tablet mouse, correct?
    Last edited by Favux; June 8th, 2012 at 08:32 AM.

  7. #7
    Join Date
    May 2008
    Location
    UK
    Beans
    1,451
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Trust 5300 on 10.04 ?

    Quote Originally Posted by Favux View Post
    I don't think WizardPen tells us if it is the driver in list-props but evdev will so run:
    Code:
    xinput list-props "UC-LOGIC Tablet WP5540U"
    and post. We could also check in Xorg.0.log in /var/log.
    Code:
    Device 'UC-LOGIC Tablet WP5540U':
    	Device Enabled (121):	1
    	Device Accel Profile (250):	0
    	Device Accel Constant Deceleration (251):	1.000000
    	Device Accel Adaptive Deceleration (253):	1.000000
    	Device Accel Velocity Scaling (254):	10.000000
    	Evdev Reopen Attempts (239):	10
    	Evdev Axis Inversion (255):	0, 0
    	Evdev Axis Calibration (256):	<no items>
    	Evdev Axes Swap (257):	0
    	Axis Labels (258):	"Abs X" (245), "Abs Y" (246), "Abs Z" (247), "Abs Rotary X" (248), "Abs Pressure" (249)
    	Button Labels (259):	"Button Left" (122), "Button Middle" (123), "Button Right" (124), "Button Wheel Up" (125), "Button Wheel Down" (126), "Button Horiz Wheel Left" (127), "Button Horiz Wheel Right" (128), "Button Side" (242), "Button Extra" (243), "Button Forward" (244), "Button Unknown" (240), "Button Unknown" (240), "Button Unknown" (240), "Button Unknown" (240)
    	Evdev Middle Button Emulation (260):	2
    	Evdev Middle Button Timeout (261):	50
    	Evdev Wheel Emulation (262):	0
    	Evdev Wheel Emulation Axes (263):	0, 0, 4, 5
    	Evdev Wheel Emulation Inertia (264):	10
    	Evdev Wheel Emulation Timeout (265):	200
    	Evdev Wheel Emulation Button (266):	4
    	Evdev Drag Lock Buttons (267):	0
    If it is on evdev let's modify the .conf file:
    Code:
    Section "InputClass"
        Identifier "WizardPen class"
        MatchIsTablet "on"
    #    MatchVendor "UC-LOGIC|KYE Systems|Ace Cad|WALTOP|Waltop"
        MatchProduct "WP5540U"
        MatchDevicePath "/dev/input/event*"
        Driver "wizardpen"
    EndSection
    
    Section "InputClass"
        Identifier "WizardPen ignore mouse dev class"
        MatchIsTablet "on"
    #    MatchVendor "UC-LOGIC|KYE Systems|Ace Cad|WALTOP|Waltop"
        MatchProduct "WP5540U"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "yes"
    EndSection
    Since xinput list only shows one input node I'm thinking the match is already good.

    And by mouse you mean your regular mouse, not a tablet mouse, correct?
    Yes a regular mouse


    I have made the changes suggested above (matching on product and not vendor) and restarted - and now it works - fantastic - thank you so much.
    Tony - Happy to try to help.
    Unless otherwise stated - all code posted by me is untested. Remember to Mark the Thread as Solved.
    Ubuntu user number # 24044 Projects : TimeWarp - on the fly Backups

  8. #8
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Trust 5300 on 10.04 ?

    Great!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •