I'm not sure this where posts this but I need help with something

GlovePIE ? - Programmable Input Emulator

GlovePIE

Converts Gamepad to Midi controller

My problem is i don’t know route program to other apps like Reason 5, Ableton live anything like these programs.

Really want use program to its full ability try going on there forums seem be down :confused:

if want try this program with any other output you can use default midi in windows system I’m using windows 7 64bit runs and works fine yet still learn how use this thing :P.

Here sample code script use for any Fighting stick edit code much as you guys like.
I got this work with Tekken 6 PS3 Hori Wireless Fighting Stick 3 to MIDI



//Tekken 6 PS3 Hori Wireless Fighting Stick 3 to MIDI
//Edit notes after testing =D
//Written for MIDI channel 1 on Joystick #1
midi.DefaultChannel=1
//BUTTONS = Square, cross, circle, triangle
midi.C4=joystick1.Button1
midi.D4=joystick1.Button2
midi.E4=joystick1.Button3
midi.F4=joystick1.Button4
//Buttons L1,R1,L2,R2
midi.G4=joystick1.Button5
midi.A4=joystick1.Button6
midi.B4=joystick1.Button7
midi.C5=joystick1.Button8
//SELECT/START BUTTONS
midi.D2=joystick1.Button9
midi.E2=joystick1.Button10
//PS3 home button aka Button13
midi.F3=joystick.Button13
//POV Hats
midi.A2=joystick1.Pov1Up
midi.B2=joystick1.Pov1Down
midi.C3=joystick1.Pov1Left
midi.D3=joystick1.Pov1Right
//midi.E3=joystick1.Pov1Center

Added Drum kit



//Tekken 6 Wireless Fighting Stick 3 TO MIDI
//Edit notes after testing =D
//WRITTEN FOR midi2 CHAN 1 ON JOYSTICK #1
midi.DeviceIn = 1
midi.DefaultChannel = 1
//BUTTONS
midi.BassDrum1 = Joystick1.button1
midi.AcousticBassDrum = Joystick1.button2
midi.HandClap = Joystick1.button3
midi.ClosedHiHat = Joystick4.button4
//TOP BUTTONS
midi.SideStick = Joystick1.button5
midi.AcousticSnare = Joystick1.button6
midi.ElectricSnare = Joystick1.button7
midi.LowFloorTom = Joystick1.button8
//SELECT/START BUTTONS
midi.LowWoodBlock = Joystick1.button9
midi.HiWoodBlock = Joystick1.button10
//BUTTONS
midi.Tambourine = Joystick1.button13
//POV H
midi.HiBongo = Joystick1.pov1up
midi.LowBongo = Joystick1.pov1down
midi.LowConga = Joystick1.pov1left
midi.OpenHiConga = Joystick1.pov1right
//midi.Claves = joystick1.Pov1Center

wow that sounds like a great way to get additional functionality out of custom stick, well except for me with at least 4 dedicated midi control surfaces laying around, with stuff not usually found on customs sticks or pads: knobs for tweaking/tuning, analog pressure sensitive pads, and of course sliders :slight_smile:

I’ve only heard of using GlovePIE for using wiimotes on PC. Clever idea, sorry I can’t help you though.