Help!! DIY gamepad to midi controller
Results 1 to 2 of 2
  1. #1
    Tech Student
    Join Date
    Jun 2011
    Posts
    1

    Default Help!! DIY gamepad to midi controller

    i just finish making my controller using usb gamepad (4 axis 12 button)

    and im just using 12 button for my controller ....but im lost wit the software part....

    currently im using joytomidi and loopbe1 but i dont really noe how to use it and mapping to traktor ....

    im doing something lik midi fighter but with 3x4
    is there anybody can help me ?

    Thank you

  2. #2
    Tech Mentor derschaich's Avatar
    Join Date
    May 2009
    Location
    Munich
    Posts
    412

    Default

    read my blogpost "the clone" (link in signature) and use following code in GlovePIE (free download):

    Code:
    midi.DeviceOut = 2
    
    debug = Joystick.NumberOfPOVs
    
    //buttons:
    midi.channel3.c4 = Joystick1.button1
    midi.channel3.csharp4 = Joystick1.pov1left
    midi.channel3.d4 = Joystick1.pov1down
    midi.channel3.dsharp4 = Joystick1.button4
    midi.channel3.gsharp3 = Joystick1.button5
    midi.channel3.a3 = Joystick1.button6
    midi.channel3.asharp3 = Joystick1.button7
    midi.channel3.b3 = Joystick1.button8
    midi.channel3.e3 = Joystick1.button9
    midi.channel3.f3 = Joystick1.button10
    midi.channel3.fsharp3 = Joystick1.button11
    midi.channel3.g3 = Joystick1.button12
    midi.channel3.c3 = Joystick1.button2
    midi.channel3.csharp3 = Joystick1.pov1up
    midi.channel3.d3 = Joystick1.pov1right
    midi.channel3.dsharp3 = Joystick1.button3
    
    //analogs:
    //midi.channel3.cc66 = MapRange(Joystick1.x, -1,1, 0,1)
    //midi.channel3.cc67 = MapRange(Joystick1.y, -1,1, 0,1)
    //midi.channel3.cc68 = MapRange(Joystick1.z, -1,1, 0,1)
    //midi.channel3.cc69 = MapRange(Joystick1.roll, -1,1, 0,1)
    this even uses your thumbsticks and D-Pad :eek:

    direkt link for blogpost:
    http://derschaich.blogspot.com/2011/...-tutorial.html

    hope this helps

Posting Permissions

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