How to configure an USB DDR dance pad for Stepmania? Announcing the arrival of Valued...

When is phishing education going too far?

Why does this iterative way of solving of equation work?

When communicating altitude with a '9' in it, should it be pronounced "nine hundred" or "niner hundred"?

Classification of bundles, Postnikov towers, obstruction theory, local coefficients

Make it rain characters

Strange behaviour of Check

Problem when applying foreach loop

If I can make up priors, why can't I make up posteriors?

Autumning in love

Fishing simulator

What kind of display is this?

Can't figure this one out.. What is the missing box?

How do you clear the ApexPages.getMessages() collection in a test?

Is there folklore associating late breastfeeding with low intelligence and/or gullibility?

How is simplicity better than precision and clarity in prose?

Array/tabular for long multiplication

Why use gamma over alpha radiation?

What do you call a plan that's an alternative plan in case your initial plan fails?

What are the performance impacts of 'functional' Rust?

What would be Julian Assange's expected punishment, on the current English criminal law?

What is the electric potential inside a point charge?

Estimated State payment too big --> money back; + 2018 Tax Reform

What did Darwin mean by 'squib' here?

Can smartphones with the same camera sensor have different image quality?



How to configure an USB DDR dance pad for Stepmania?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to disable the notebook Touch Pad when a wireless USB mouse is connectedHow to disable slider on game pad?Recommendations for a Wireless-N USB dongle?DragonRise USB gamepad not workingHow do I use a gamepad?How to configure Wine for Half-Life?How to configure Qjoypad?USB number pad won't workJoystick's pad is moving mouse cursorCobaltFlux USB Gamepad doesn't report input? How do I get my computer to recognize the input?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







6















I have Stepmania running and my official Dance Dance Revolution dance pad from DDR Universe 2, but I can't get the former to work with the latter.



lsusb says:



Bus 002 Device 003: ID 12ab:0004 Honey Bee Electronic International Ltd.


I tried to look at the relevant Ubuntu documentation for lucid lynx 10.04 LTS, with no luck.










share|improve this question













migrated from gaming.stackexchange.com Apr 5 '11 at 17:34


This question came from our site for passionate videogamers on all platforms.



















  • Revision history on Gaming

    – badp
    Apr 5 '11 at 17:38













  • Could you provide a link to the aforementioned 'relevant Ubuntu documentation'?

    – Marco Ceppi
    Apr 5 '11 at 17:42











  • doc.ubuntu-fr.org/joystick

    – zillion
    Apr 5 '11 at 23:16


















6















I have Stepmania running and my official Dance Dance Revolution dance pad from DDR Universe 2, but I can't get the former to work with the latter.



lsusb says:



Bus 002 Device 003: ID 12ab:0004 Honey Bee Electronic International Ltd.


I tried to look at the relevant Ubuntu documentation for lucid lynx 10.04 LTS, with no luck.










share|improve this question













migrated from gaming.stackexchange.com Apr 5 '11 at 17:34


This question came from our site for passionate videogamers on all platforms.



















  • Revision history on Gaming

    – badp
    Apr 5 '11 at 17:38













  • Could you provide a link to the aforementioned 'relevant Ubuntu documentation'?

    – Marco Ceppi
    Apr 5 '11 at 17:42











  • doc.ubuntu-fr.org/joystick

    – zillion
    Apr 5 '11 at 23:16














6












6








6


2






I have Stepmania running and my official Dance Dance Revolution dance pad from DDR Universe 2, but I can't get the former to work with the latter.



lsusb says:



Bus 002 Device 003: ID 12ab:0004 Honey Bee Electronic International Ltd.


I tried to look at the relevant Ubuntu documentation for lucid lynx 10.04 LTS, with no luck.










share|improve this question














I have Stepmania running and my official Dance Dance Revolution dance pad from DDR Universe 2, but I can't get the former to work with the latter.



lsusb says:



Bus 002 Device 003: ID 12ab:0004 Honey Bee Electronic International Ltd.


I tried to look at the relevant Ubuntu documentation for lucid lynx 10.04 LTS, with no luck.







hardware gamepad 10.04 games






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 5 '11 at 17:08









zillionzillion

1861413




1861413




migrated from gaming.stackexchange.com Apr 5 '11 at 17:34


This question came from our site for passionate videogamers on all platforms.









migrated from gaming.stackexchange.com Apr 5 '11 at 17:34


This question came from our site for passionate videogamers on all platforms.















  • Revision history on Gaming

    – badp
    Apr 5 '11 at 17:38













  • Could you provide a link to the aforementioned 'relevant Ubuntu documentation'?

    – Marco Ceppi
    Apr 5 '11 at 17:42











  • doc.ubuntu-fr.org/joystick

    – zillion
    Apr 5 '11 at 23:16



















  • Revision history on Gaming

    – badp
    Apr 5 '11 at 17:38













  • Could you provide a link to the aforementioned 'relevant Ubuntu documentation'?

    – Marco Ceppi
    Apr 5 '11 at 17:42











  • doc.ubuntu-fr.org/joystick

    – zillion
    Apr 5 '11 at 23:16

















Revision history on Gaming

– badp
Apr 5 '11 at 17:38







Revision history on Gaming

– badp
Apr 5 '11 at 17:38















Could you provide a link to the aforementioned 'relevant Ubuntu documentation'?

– Marco Ceppi
Apr 5 '11 at 17:42





Could you provide a link to the aforementioned 'relevant Ubuntu documentation'?

– Marco Ceppi
Apr 5 '11 at 17:42













doc.ubuntu-fr.org/joystick

– zillion
Apr 5 '11 at 23:16





doc.ubuntu-fr.org/joystick

– zillion
Apr 5 '11 at 23:16










2 Answers
2






active

oldest

votes


















3














From http://www.stepmania.com/wiki/Configure_Keyboard_and_Dance_Pads#Linux :



For most dance pads, joydev and analog modules are required. Xbox Dance Pads require the xpad module. If they are already compiled with your kernel, try:



modprobe joydev
modprobe analog
modprobe xpad (for xbox pads)


If not, refer to the manual of your distribution how to get it (you can also download the kernel sources from kernel.org and compile your own kernel yourself).



Then look for some test program, like joystick. Install it with your package manager or compile it yourself.



sudo apt-get install joystick


And launch :



jstest /dev/input/js0


You might need to link /dev/input/js0 to /dev/js0 by typing:



ln -s /dev/input/js0 /dev/js0


(I modified it a bit, now it's working on Ubuntu)



I hope this helped you,



Daniel






share|improve this answer
























  • Total fail !!! jstest /dev/input/js0 don’t work, so the rest won’t work ...

    – zillion
    Apr 13 '11 at 21:07











  • @zillion Please read my full answer. You might need to link /dev/input/js0 to /dev/js0. You have to link it before you run jstest.

    – omnidan
    Apr 14 '11 at 13:54



















0














I am struggling to connect wireless dance pad to my laptop. I don’t have the wireless adapter for the dance pad as the seller forgot to ship it.
I have a few wireless adapters for mouse/keyboard that I can use to connect this dance pad.
Please advise what will I need to do?
I am not a techie so please let me know in simple language what is that I will need?
Thanks.
Abhishek






share|improve this answer








New contributor




Abhishek Nigam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f33676%2fhow-to-configure-an-usb-ddr-dance-pad-for-stepmania%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    From http://www.stepmania.com/wiki/Configure_Keyboard_and_Dance_Pads#Linux :



    For most dance pads, joydev and analog modules are required. Xbox Dance Pads require the xpad module. If they are already compiled with your kernel, try:



    modprobe joydev
    modprobe analog
    modprobe xpad (for xbox pads)


    If not, refer to the manual of your distribution how to get it (you can also download the kernel sources from kernel.org and compile your own kernel yourself).



    Then look for some test program, like joystick. Install it with your package manager or compile it yourself.



    sudo apt-get install joystick


    And launch :



    jstest /dev/input/js0


    You might need to link /dev/input/js0 to /dev/js0 by typing:



    ln -s /dev/input/js0 /dev/js0


    (I modified it a bit, now it's working on Ubuntu)



    I hope this helped you,



    Daniel






    share|improve this answer
























    • Total fail !!! jstest /dev/input/js0 don’t work, so the rest won’t work ...

      – zillion
      Apr 13 '11 at 21:07











    • @zillion Please read my full answer. You might need to link /dev/input/js0 to /dev/js0. You have to link it before you run jstest.

      – omnidan
      Apr 14 '11 at 13:54
















    3














    From http://www.stepmania.com/wiki/Configure_Keyboard_and_Dance_Pads#Linux :



    For most dance pads, joydev and analog modules are required. Xbox Dance Pads require the xpad module. If they are already compiled with your kernel, try:



    modprobe joydev
    modprobe analog
    modprobe xpad (for xbox pads)


    If not, refer to the manual of your distribution how to get it (you can also download the kernel sources from kernel.org and compile your own kernel yourself).



    Then look for some test program, like joystick. Install it with your package manager or compile it yourself.



    sudo apt-get install joystick


    And launch :



    jstest /dev/input/js0


    You might need to link /dev/input/js0 to /dev/js0 by typing:



    ln -s /dev/input/js0 /dev/js0


    (I modified it a bit, now it's working on Ubuntu)



    I hope this helped you,



    Daniel






    share|improve this answer
























    • Total fail !!! jstest /dev/input/js0 don’t work, so the rest won’t work ...

      – zillion
      Apr 13 '11 at 21:07











    • @zillion Please read my full answer. You might need to link /dev/input/js0 to /dev/js0. You have to link it before you run jstest.

      – omnidan
      Apr 14 '11 at 13:54














    3












    3








    3







    From http://www.stepmania.com/wiki/Configure_Keyboard_and_Dance_Pads#Linux :



    For most dance pads, joydev and analog modules are required. Xbox Dance Pads require the xpad module. If they are already compiled with your kernel, try:



    modprobe joydev
    modprobe analog
    modprobe xpad (for xbox pads)


    If not, refer to the manual of your distribution how to get it (you can also download the kernel sources from kernel.org and compile your own kernel yourself).



    Then look for some test program, like joystick. Install it with your package manager or compile it yourself.



    sudo apt-get install joystick


    And launch :



    jstest /dev/input/js0


    You might need to link /dev/input/js0 to /dev/js0 by typing:



    ln -s /dev/input/js0 /dev/js0


    (I modified it a bit, now it's working on Ubuntu)



    I hope this helped you,



    Daniel






    share|improve this answer













    From http://www.stepmania.com/wiki/Configure_Keyboard_and_Dance_Pads#Linux :



    For most dance pads, joydev and analog modules are required. Xbox Dance Pads require the xpad module. If they are already compiled with your kernel, try:



    modprobe joydev
    modprobe analog
    modprobe xpad (for xbox pads)


    If not, refer to the manual of your distribution how to get it (you can also download the kernel sources from kernel.org and compile your own kernel yourself).



    Then look for some test program, like joystick. Install it with your package manager or compile it yourself.



    sudo apt-get install joystick


    And launch :



    jstest /dev/input/js0


    You might need to link /dev/input/js0 to /dev/js0 by typing:



    ln -s /dev/input/js0 /dev/js0


    (I modified it a bit, now it's working on Ubuntu)



    I hope this helped you,



    Daniel







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Apr 12 '11 at 7:32









    omnidanomnidan

    1,81811622




    1,81811622













    • Total fail !!! jstest /dev/input/js0 don’t work, so the rest won’t work ...

      – zillion
      Apr 13 '11 at 21:07











    • @zillion Please read my full answer. You might need to link /dev/input/js0 to /dev/js0. You have to link it before you run jstest.

      – omnidan
      Apr 14 '11 at 13:54



















    • Total fail !!! jstest /dev/input/js0 don’t work, so the rest won’t work ...

      – zillion
      Apr 13 '11 at 21:07











    • @zillion Please read my full answer. You might need to link /dev/input/js0 to /dev/js0. You have to link it before you run jstest.

      – omnidan
      Apr 14 '11 at 13:54

















    Total fail !!! jstest /dev/input/js0 don’t work, so the rest won’t work ...

    – zillion
    Apr 13 '11 at 21:07





    Total fail !!! jstest /dev/input/js0 don’t work, so the rest won’t work ...

    – zillion
    Apr 13 '11 at 21:07













    @zillion Please read my full answer. You might need to link /dev/input/js0 to /dev/js0. You have to link it before you run jstest.

    – omnidan
    Apr 14 '11 at 13:54





    @zillion Please read my full answer. You might need to link /dev/input/js0 to /dev/js0. You have to link it before you run jstest.

    – omnidan
    Apr 14 '11 at 13:54













    0














    I am struggling to connect wireless dance pad to my laptop. I don’t have the wireless adapter for the dance pad as the seller forgot to ship it.
    I have a few wireless adapters for mouse/keyboard that I can use to connect this dance pad.
    Please advise what will I need to do?
    I am not a techie so please let me know in simple language what is that I will need?
    Thanks.
    Abhishek






    share|improve this answer








    New contributor




    Abhishek Nigam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.

























      0














      I am struggling to connect wireless dance pad to my laptop. I don’t have the wireless adapter for the dance pad as the seller forgot to ship it.
      I have a few wireless adapters for mouse/keyboard that I can use to connect this dance pad.
      Please advise what will I need to do?
      I am not a techie so please let me know in simple language what is that I will need?
      Thanks.
      Abhishek






      share|improve this answer








      New contributor




      Abhishek Nigam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.























        0












        0








        0







        I am struggling to connect wireless dance pad to my laptop. I don’t have the wireless adapter for the dance pad as the seller forgot to ship it.
        I have a few wireless adapters for mouse/keyboard that I can use to connect this dance pad.
        Please advise what will I need to do?
        I am not a techie so please let me know in simple language what is that I will need?
        Thanks.
        Abhishek






        share|improve this answer








        New contributor




        Abhishek Nigam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.










        I am struggling to connect wireless dance pad to my laptop. I don’t have the wireless adapter for the dance pad as the seller forgot to ship it.
        I have a few wireless adapters for mouse/keyboard that I can use to connect this dance pad.
        Please advise what will I need to do?
        I am not a techie so please let me know in simple language what is that I will need?
        Thanks.
        Abhishek







        share|improve this answer








        New contributor




        Abhishek Nigam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        Abhishek Nigam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered 29 mins ago









        Abhishek NigamAbhishek Nigam

        1




        1




        New contributor




        Abhishek Nigam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        Abhishek Nigam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        Abhishek Nigam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f33676%2fhow-to-configure-an-usb-ddr-dance-pad-for-stepmania%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            List of shipwrecks in 1808...

            Is there a lightweight tool to crop images quickly?Cropping Images using Command Line Tools OnlyHow to crop...

            Unit packagekit.service is masked Announcing the arrival of Valued Associate #679: Cesar...