Search:

Type: Posts; User: Grumbel; Keyword(s):

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    1,224

    [ubuntu] Re: Retrolink snes gamepad not recognized

    If 'lsusb' can't even detect the gamepads, then it might very well be a hardware issue. Either the pads are broken or some other USB trouble prevents them from working. If they are connected to a...
  2. Re: Logitech Extreme Pro joystick. don't know if working with ubuntu

    Just to see if your joystick is working you can use jstest from the joystick package. You use in via command line like this:

    jstest /dev/input/js0

    There is also graphical app in the form of...
  3. Replies
    4
    Views
    706

    Re: 12.10 gamepad issue

    If the axis do not respont in evtest, but other buttons do, then it is an issue with the kernel joystick driver or USB driver. Next steps:

    What brand of joysticks do you use? Post the "lsusb -v"...
  4. Replies
    4
    Views
    706

    Re: 12.10 gamepad issue

    Could you provide some more information on your joysticks?

    What types of joysticks are they?
    What games do they fail in?
    Are the values reported by evtest and jstest correct ("apt-get install...
  5. Replies
    6
    Views
    6,003

    [ubuntu] Re: Need help with steelseries 3GC gamepad

    First of, uninstall the xserver-xorg-input-joystick, as that's for mouse emulation, not for using the gamepad in a game.

    About the miss identification of the joystick, that's normal, joystick...
  6. Replies
    2
    Views
    843

    Re: Emulator for ZX 81 with Joystick support?

    No idea, but you can use tools such as qjoypad, joy2key, etc. to emulate keyboard presses with a joystick, that should work for most emulators.
  7. Replies
    11
    Views
    7,487

    [SOLVED] Re: keymapping for joystick

    First of, make sure that your joystick is detected properly and working. You can do so from command line with:

    jstest /dev/input/js0

    If that responds properly, you should be able to use...
  8. Replies
    3
    Views
    7,257

    Re: Native Linux Gamepad Manufaturers

    There really is nothing Linux specific about gamepads. If a gamepad makes proper use of USB HID, then it will work on any OS, with no extra drives or anything, it's all Plug&Play.

    The issue with...
  9. Thread: Gamepad/Keypad

    by Grumbel
    Replies
    3
    Views
    993

    [ubuntu] Re: Gamepad/Keypad

    Have you tested the gamepad on Windows? Does it work there? As this sounds more like a hardware issue then a software one, as even unsupported USB hardware should show up in lsusb. Also what output...
  10. Replies
    4
    Views
    971

    [SOLVED] Re: Razer Onza and xboxdrv

    I don't quite get what you are trying to do. If you installed it already via PPA, then you are done. There is no xboxdrv directory and no need to run scons, that's only for compling from source.
  11. Replies
    9
    Views
    3,117

    [ubuntu] Re: Ubuntu 11.10 No jscalibrator?

    All the info you need is in the manpage. The README is at:

    /usr/share/doc/xboxdrv/README


    Then it should work. If uinput wouldn't be loaded, xboxdrv would complain about it being missing.
  12. Replies
    9
    Views
    3,117

    [ubuntu] Re: Ubuntu 11.10 No jscalibrator?

    What error message do you get from xboxdrv? "rmmod xpad" and running xboxdrv as root or adding your user to the root group should be all that is needed.


    Debian and Ubuntu dropped gtk1, they only...
  13. Thread: Gamepad setup

    by Grumbel
    Replies
    7
    Views
    3,269

    [ubuntu] Re: Gamepad setup

    Normally gamepads work in Linux out-of-the-box, you plug them in and they work. To see if Linux picked it up properly, have a look at /dev/input/, there should be a file /dev/input/js0, run jstest on...
  14. Replies
    19
    Views
    2,935

    [SOLVED] Re: usb composite devices ( mouse and gamepad )

    The term "upstream" refers to the people who originally write the software (i.e. the kernel developers), as opposet to Ubuntu who just takes the software and then distributes it in packaged form, but...
  15. Replies
    19
    Views
    2,935

    [SOLVED] Re: usb composite devices ( mouse and gamepad )

    Yes:

    https://bugs.launchpad.net/ubuntu/+source/linux/+filebug

    Going through upstream might however be faster.
  16. Replies
    19
    Views
    2,935

    [SOLVED] Re: usb composite devices ( mouse and gamepad )

    http://www.kernel.org/doc/Documentation/SubmittingPatches

    Never been through the process myself.


    Not quite. That code snipped has bugs, more like:



    case HID_UP_BUTTON:
  17. Replies
    19
    Views
    2,935

    [SOLVED] Re: usb composite devices ( mouse and gamepad )

    Use KEY_#319 for that.
  18. Replies
    19
    Views
    2,935

    [SOLVED] Re: usb composite devices ( mouse and gamepad )

    Only this one is actually checked:

    Event code 320 (ToolPen)

    But not having the others Tool* ones there as well would certainly be more clean.


    I think the problem is simply that there...
  19. Replies
    19
    Views
    2,935

    [SOLVED] Re: usb composite devices ( mouse and gamepad )

    If you Ctrl-c the xboxdrv process, you should be able to simply restart it. If for some reason it ends up floating around in the background, use:

    sudo killall -9 xboxdrv

    To kill it. xboxdrv has...
  20. Replies
    19
    Views
    2,935

    [SOLVED] Re: usb composite devices ( mouse and gamepad )

    Does that mean it reports both joystick and mouse events for the same movements (shouldn't have anything to do with the problem at hand, just wondering)?


    Ok, guess I found the problem, the...
  21. Replies
    19
    Views
    2,935

    [SOLVED] Re: usb composite devices ( mouse and gamepad )

    That's what it is supposed to do. But after running it you should have a:

    /dev/input/js0

    Is that not the case?


    An evdev (evtest /dev/input/event) is not a joydev (jstest /dev/input/js0),...
  22. [ubuntu] Re: Joystick weirdness /dev/input/js0. AKA a bumbling tale of an amateur Ubuntu user

    If you are into writing some code, it is actually quite easy to create virtual input devices via uinput on Linux that behave however you want them to be.

    Aside from that, the configurability of...
  23. [ubuntu] Re: usb gamepad: How to setup, install, test, and calibrate?

    As a general rule of thumb: Never ever use jscal or jscalibrator, you don't need them, most games will ignore what you do with them anyway and those that don't have a far higher chance to get worse...
  24. Replies
    19
    Views
    2,935

    [SOLVED] Re: usb composite devices ( mouse and gamepad )

    This means that your device is available as:


    /dev/input/mouse0
    /dev/input/event5

    You can access it via (don't think there is a tool to acces mouse0 in a userfriendly way):


    evtest...
  25. Replies
    2
    Views
    1,307

    Re: Logitech Dual Action Gamepad Help

    Almost all USB gamepads should work out of the box just by plugging them in. You can verify that they work by:


    apt-get install joystick
    jstest /dev/input/js0
Results 1 to 25 of 144
Page 1 of 6 1 2 3 4