Mixing two joypads together

I wonder if there's a possibility to "mix" two equal joypads (PS3 controllers) together, and fuction as the same joypad. The /dev/input/mice node is a mix of all /dev/input/mouse* stuff, can it be done with joypads too? The use of this is quite slim, but me and a friend want to play a single player RPG with two controllers. I've tried some mknod, but didn't get far.
So far I have /dev/input/js0 and /dev/input/js1 showing up, and they both work well individually.
Last edited by Themaister (2009-02-20 00:43:15)

Have you click/drag selected any audio, the functions won't be available unless you have audio selected.

Similar Messages

  • Mixing two AudioInputStreams into one

    Is there a quick way to mix two or more AudioInputStreams into one, or two Clips into one, or to just play the two together in sync?
    The only way I have found to do this is by using the classes at http://www.jsresources.org/examples/AudioConcat.html - this works by combining two or more AudioInputStreams into a separate AudioInputStream, by reading a frame's worth of bytes at a time from each stream, and using the Tritonus TConversionTool.
    However, there is a delay before long streams are combined using this method. So is there a way that two streams can just be played together right away?

    jamama wrote:
    Is there a quick way to mix two or more AudioInputStreams into one, or two Clips into one, or to just play the two together in sync?[http://java.sun.com/docs/books/tutorial/sound/playing.html]
    Scroll down until you find "Synchronizing Playback on Multiple Lines"

  • IMessage has mixed two contacts

    Hi
    I have an iPhone 6 with iOS 8.0 and am having issues sending messages to a contact via iMessage. Every time I send a message to her, the message I just sent would pop up saying it was from her. Then it would lose all messages I just sent and only keep the messages sent on SMS. As I scroll back through the thread it then mixes messages from my sister (a different contact).
    Therefore not only is this not working it is also mixing two different contacts together on one thread. I've deleted the thread and reset my phone but it still has a notification on the app saying I have message when I don't.
    If I could get some help with this it would be great!
    Thanks!

    I only have one apple ID which is used for everything so yes I assume so. Resetting my phone and deleting the thread has actually fixed the problem, so thanks anyway!

  • How do I connect two lines together.

    I have two lines at an angle but where the corner of the angle is supposed to be there is a little triangle missing. I tried joining the two lines together but when I hit join one line goes past the other.
    Before Joining:
    After Joining:

    There is no need to lock one of the paths, because you do not have to tediously select endpoints just to join paths. Doing so was necessary in Illustrator for most of its history, but it finally (decades behind other drawing programs) gained the ability to join paths at their nearest endpoints by just selecting the paths.
    Undo (or cut) the unwanted join.
    Black pointer: Select the left and right paths.
    Join.
    Alternativley, when drawing line art, it is not uncommon to set your default Graphic Style to use rounded endcaps. That negates the problem of the "missing triangle" (as you call it) appearance of coincident straight end caps.
    JET

  • How do I "fuse" two photos together in elements?

             I would like to "fuse" two photos together; how do I do this in elements?http://[email protected]

    Please amplify what you are trying to do.
    Do you wish to add an object from photo A to photo B, for example?

  • Linking Two Folders Together

    Hi,
    I have a 13" MacBook Air Mid 2013, 128GB, 4GB RAM, 1.3 GHz, OS X 10.10 Yosemite.
    When I put a folder in iCloud Drive, the folder is in iCloud Drive and on my Desktop. What I want to do is link the two folders together so when I save a file in the folder on my desktop, it puts it in the folder that's in iCloud Drive too. I hope I have explained this good enough.
    Please help.
    Thanks

    If you own both and have admin accounts on them, yes. On the "other" computer, go to System Preferences, Sharing, and turn on File Sharing.
    When the two computers are on the same network, you should see the other computer appear in your sidebar in Finder. Click it, authenticate with your admin details (from the other computer), and you now have access to its files.
    Matt

  • Linking two switches together.

    hi Guys ,
    quick question in relation to joining two switches together,
    can I link a 2950 switch with a 1000 BASE-SX with a 3560G with 4 SPF ports with fibre and what pitfalls should i look out for .
    Thanks in advance
    Kevin

    Hello,
    So you would like to connect GBIC to SFP, you need Multimode Duplex Fiber Optical cable with SC-LC connectors. If SFP to SFP you need the same cably type with LC-LC connectors.
    http://www.cisco.com/en/US/products/hw/routers/ps341/prod_module_installation_guide09186a00801cc731.html
    http://cisco.com/en/US/products/hw/modules/ps5455/products_data_sheet09186a008014cb5e.html
    bye
    FCS
    Please rate me if I helped.

  • Linking two accounts together

    Are you able to link two accounts together.  For example, I have had an account for a long time, but now my husband has one as well as my son.  My son is currently signed in with my account but I would like to give him his own as well as share what I have with my husband.
    Thanks,
    Stephanee

    Sorry, but it is not possible to merge iTunes Store accounts. You can, however, use content from multiple iTunes Store acounts on any given system or device. You just have to authorize the device to each account. You will have to use the account though which any item was purchased for redownloading, app updates, etc.
    Regards.

  • Linking two computers together

    Can I link two macs together so I have access to both but the other computer doesn't have access to mine?

    If you own both and have admin accounts on them, yes. On the "other" computer, go to System Preferences, Sharing, and turn on File Sharing.
    When the two computers are on the same network, you should see the other computer appear in your sidebar in Finder. Click it, authenticate with your admin details (from the other computer), and you now have access to its files.
    Matt

  • Layer Mask for mixing two faces or images in photoshop cs6 tutorial

    In this tutorial you will learn how to mix two images with the help of Layer Mask in Adobe Photoshop cs 6.
    Created by ME....... for Photoshop Beginners.
    https://www.youtube.com/watch?v=0RfGSMZ3dzM

    Must watch..

  • Joining two files together

    I'm kinda new to Java, but i'm trying to create a program which joins 2 files together. It works fine with .txt files, but when i try to join two .wmv files, only the one it processes first will show, though the output file will have the size of the two files together. Here's my code for joining them together:
    try {
                        JFileChooser location = new JFileChooser();
                        location.showDialog(this, "Save file");
                        File videoout = location.getSelectedFile();
                        OutputStream os = new FileOutputStream(videoout);
                        BufferedOutputStream out = new BufferedOutputStream(os);
                        InputStream is = null;
                        BufferedInputStream in = null;
                        ListIterator pathsIterator = paths.listIterator();
                        while(pathsIterator.hasNext()) {
                            File part = new File(pathsIterator.next().toString());
                            is = new FileInputStream(part);
                            in = new BufferedInputStream(is);
                            int line;
                            while((line = in.read()) != -1) {
                                out.write(line);
                        in.close();
                        out.close();
                        JOptionPane.showMessageDialog(this, "Done");
                    } catch(IOException io) {
                        System.out.println("IO: " + io);
                    }Any idea what i'm doing wrong?
    Thanks

    Just because you put 2 files in the same file doesn't mean some application can understand that it's 2 files in 1. Meaning, the player of the merged WMV can't know that there's 2 files and that it should play both back to back. You have to read the WMV files knowing the WMV format and then generate 1 file that combines the 2, which typically would include updating header information in the file. Java's I/O classes are not going to provide that sort of thing for you.

  • Moving two motors together.

    Hi all,
    I'm using MID-7604 motion controller that is driving a set of motors.
    I wish to move 2 motors in tandem.
    Can anyone suggest links to how this is done in Labview?
    Does the hardware actually implement this in parallel, or does it internally serialize it?
    Is there a performance issue with doing this vs moving the motors sequentially?
    Thanks,
    cosmund

    cosmund,
    there are several ways to move two motors together. One option is to configure a vector space that contains both axes and  configure your moves for a vector space. Please refer to the shipping examples (e. g. Two-Axis Vector Move with Position Monitor.vi). Axes in a vector space always start and stop at the same time.
    Another option is to configure the move constraints for both axes independently and use a single instance of Start Motion.flx to start both axes at the same time. You will have to use the Axis/VS map parameter and set the Axis or Vector Space parameter to Axis Control.
    The third option is to use electronic gearing. In this mode you only have to control one axis and the other one will follow with the gear ratio specified by you. Please refer to the shipping examples (e. g. Master Axis - Slave Axis Gearing.vi).
    I hope that helps,
    Jochen Klier
    National Instruments
    P. S.: If you need further information, please add the NI-Motion device type (e. g. PCI-7340) to your next post.

  • I downloaded the latest iOS7 to my iPad and then the screen went blank and would not respond.   I have tried pressing the two buttons together and briefly get the Apple logo but still can not start up, the logo disappears.   I have tried connecting the iP

    I downloaded the latest iOS7 to my iPad and then the screen went blank and would not respond.   I have tried pressing the two buttons together and briefly get the Apple logo but still can not restart, the logo disappears.   I have tried connecting to my iMac to restore the iPad but the device does not show up (I have an old iMac).   What else can I do?

    You need to be running Snow Leopard 10.6.8 at the very least in order to sync your iPad with iTunes so you could update your Mac, if it can be updated, and if you care to do so.
    If that's not an option, you will have to find someone that can restore the device for you with their computer running iTunes or make an appointment at an Apple Store and ask them to restore the device for you.
    I hope that you have an iCloud backup, because you will lose everything on the device when it is restored.
    Snow Leopard can still be purchased in the U.S. Apple Online Store.
    http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    Also, I would not give up on the reset technique....holding down on the sleep and home buttons at the same time until the Apple logo appears. It takes about 10-15 seconds and sometimes just a little longer to get the logo to appear.

  • Adding two arrays together

    I am trying to add two arrays together, it does not seem as if the arrays are broken up into more than one index. I have attached my code. If the array is broken up into indexes I would like to add each corresponding index, but I think the array is all in just one index and if so I was wondering how would I break it into indexes. Thanks
    Attachments:
    SimpleTest x1.vi ‏336 KB

    Since you are "transposing" and later work with 1D array, I assume you want to read the first column of the file.
    Why do you need a sequence stacked 5 frames deep, local variables, 5 instances of the same boolean diagram constant and 5 path conststants of which some are identical??? None of this is needed!
    All you need is probably something along the lines of the following picture, which probably does something similar to what you want. Still, we are probably still jumping through too many flaming hoops. Note that the execution order is uniquely defined by the wiring alone, no sequence needed! Can you take a step back and tell us what you are actually trying to achieve with all this? How many columns are in the file? Only one?
    Message Edited by altenbach on 01-27-2009 04:02 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    AddArraysFromFile.png ‏13 KB

  • How to blend two photos together ?

    Hi Everyone,
    I'm an intermediate Photoshop user and this is my first post.  I'm hoping to get some advice from an advanced user to achieve the following:
    1)  I have two seperate images...one of a scenic background and another of a person's face.  I want to place the image of the person's face on top of the scenic background and blend them together so the person's face looks like a soft silhouette on the scenic background. I want to do this in an 'artful' way where the two images blend together with real chemistry.  I tried using "overlay" mode on the facial image and fiddling with its layer opacity (which I thought would work) but the results look very contrived to me.  Anyone know how to do this ?
    Thank you very much for your time !
    Jay

    Thank you John for the quick reply.  I actually excerpted the facial image fairly well and I did use a feathered edge as well as a layer style called "Outer Glow".  Both of these techniques helped.  I'm just looking a way for these two images to have real chemistry together.  I am designing a series of sympathy cards for a memorial service and I'm looking to marry these two images together in an artful way.  Are there any 3rd party filters that combine photos together in a collage like this ?  Although my collage is very simple (just two images).  I have attached one sample background image here if you'd like to see what it looks like.  I have the image of the Woman's face already cut out on a transparent background in a .psd file.  I can't seem to post a PSD file here in the forum.  So, I uploaded it to a website where it can be downloaded from the following location:
    Woman's Face: http://www.fileuploadcenter.com/BettyWilson-sm.psd
    2nd Sample Background: http://www.fileuploadcenter.com/MystyForestPath508293.jpg
    Thank you,
    Jay

Maybe you are looking for

  • Volume increases suddenly during the playing *.mkv file in VLC player

    I watched video in *.mkv by using VLC, when video has reached particular moment, the volume (not in VLC) increased from ~20% to ~75%. This is not VLC's volume, I don't know how to name it correctly, it's volume that I see when I wrote "alsamixer" in

  • Vista and iTunes shared library - Admin vs. Standard User

    Here's a good one.....I am the administrator of the family's Vista desktop computer, my kids are Standard Users. When I log in to the computer and bring up iTunes, I am able to see and access our shared library of music on our Synology DS207+ NAS. Wh

  • Query for 1:N mapping

    Hi Experts, I have a scenario where first I create a single file form IDoc and then this single file has to copied to 10 different folders on the same server. There is no change in data, I just have to copy the source file. I have issues with the sec

  • SelectOneChoice value needed for find-method to refresh table

    I would like to implement a filter that will filter the dataset, resultset returned by my adf-table. The user has to select a value in the dropdown-list and after he has made a selection the table has to be refreshed using the value of the dropdown a

  • Drag and drop into iTunes

    I used to be able to drag and drop a mp3 file from mail directly to iTunes. Not anymore. How can i save these music files to iTunes now? When I use the Lion save feature it takes so many more clicks and I'm not sure how to set up the folders so that