Results 1 to 10 of 340

Thread: Install Wizardpen driver for Iball tablet

Threaded View

  1. #1
    Join Date
    Apr 2009
    Location
    Mangalore India
    Beans
    840
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Install Wizardpen driver for Iball tablet

    Hi Guys
    In this thread you will come to know how to install wizardpen drivers for your Tablets and mousepen in plain and easy steps.

    Wizardpen drivers are meant for following pen tablets. They are as following
    # Acecad Flair II GT-504
    # DigiPro 5.5×4” Graphics Tablet
    # Digital Ink Pad (A4 format)
    # G-pen
    # Genius Wizardpen
    # Genius Mousepen
    # Genius
    # iBall
    # Manhattan
    # Pentagram
    # QWare
    # Trust TB-3100
    # Trust TB-5300
    # Trust TB-6300
    # iBall Tablet PF806
    # AIPTEK HyperPen 10000 U ("UC-LOGIC TWA60")
    # Medion MD 85673 USB Grafiktablett P82012
    # Intellipen Pro(EPOS EPOS Pen Digitizer)
    # NGS Draw Master Tablet (UC-LOGIC Tablet WP8060U)

    1.The first step is to download the driver. You can download it from here. You can find this at the bottom of this post

    Please download this to your desktop.

    2.Extract the files in the folder by double clicking on it. You can either use Ark or Archive manager for that. Please extract these files to desktop.

    3.Retrieve the developmental packages by using the following command in the terminal. Open terminal by navigating to Applications---> tools---> Terminal
    The command is
    Code:
    sudo aptitude install xutils libx11-dev libxext-dev build-essential \
                xautomation xinput xserver-xorg-dev
    4.Type the command
    Code:
    cd Desktop
    5. Type the command
    Code:
    cd wizardpen-0.7.0-alpha2
    6.Install the driver by the following command
    Code:
    ./configure --with-xorg-module-dir=/usr/lib/xorg/modules
            make && sudo make install
    Check the integrity of the driver installation by typing the command.
    Code:
    ls /usr/lib/xorg/modules/input/wizardpen_drv.*
    It should give you the output as following
    Code:
    /usr/lib/xorg/modules/input/wizardpen_drv.la
    /usr/lib/xorg/modules/input/wizardpen_drv.so
    Well the first part is over.

    7. Type the following command in the terminal to know the make of the Pentablet.
    Code:
    grep -i name /proc/bus/input/devices
    Please note down the make of the tablet which you have to use in the next step.

    8.Create a new .fdi file by using the following command in terminal
    Code:
    sudo vim /etc/hal/fdi/policy/99-x11-wizardpen.fdi
    Press 'I' so that INSERT appears

    9. Paste the following template in the terminal
    Code:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
                <deviceinfo version="0.2">
                <device>
                    <!-- This MUST match with the name of your tablet obtained -->
                    <!-- in Step 2 specified previously                        -->
                    <match key="info.product" contains="NAME OF YOUR TABLET">
                    <merge key="input.x11_driver" type="string">wizardpen</merge>
                    <merge key="input.x11_options.SendCoreEvents" type="string">true</merge>
    
                    <!-- Modify these configuration accordingly -->
                    <!-- See CONFIGURATION OPTIONS section for the full-set of -->
                    <!-- configurable options                                  -->
                    <merge key="input.x11_options.TopX" type="string">5619</merge>
                    <merge key="input.x11_options.TopY" type="string">6554</merge>
                    <merge key="input.x11_options.BottomX" type="string">29405</merge>
                    <merge key="input.x11_options.BottomY" type="string">29671</merge>
                    <merge key="input.x11_options.MaxX" type="string">29405</merge>
                    <merge key="input.x11_options.MaxY" type="string">29671</merge>
                    </match>
                </device>
                </deviceinfo>

    Please insert the name of your tablet where i have highlighted in red. This you can do by moving the cursor in the terminal with arrow keys.
    Click Esc and type :wq and press Enter to save the file you have created.

    Reboot your machine. It should work.

    In case if it is not working(which occurs rarely), You can try by adding two more lines in the .fdi file
    For editing enter the command
    Code:
    gksudo gedit  /etc/hal/fdi/policy/99-x11-wizardpen.fdi
    The two lines of code which may help you has to be added above the line which appears as '</match>'. The code is as follows
    Code:
    <merge key="info.product" type="string">stylus</merge>
          <merge key="input.x11_options.SendCoreEvents" type="string">true</merge>

    I acknowledge the help of Favux and give credit to him who helped me a lot to install the wizardpen driver.

    With regards
    Dr Kurian
    Attached Files Attached Files
    Last edited by drpjkurian; April 11th, 2010 at 06:13 AM.

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
  •