Hello DJTT community,

I'm using a gamepad hooked up into GlovePIE to convert the gamepad signals into MIDI. Everything is working fine, but I can't figure out how to get the analog stick to send out midi commands for Pitch Bend wheel instead of CC values.

This is what I have for the analog stick:
Code:
//analogs:
midi.control1=(joystick1.x/261)+64
midi.control2=(joystick1.y/261)+64
midi.control3=(joystick1.z/261)+64
midi.control4=(joystick1.roll/261)+64
Is there anyway to change the left column so that the outgoing messages from GlovePIE are smooth pitch bend instead of CC?

Thanks in advance!