Reputation: 101
I've got an electronic piano that lacks the pitch bend and modulation wheels. I'm looking for a way to simulate them while still giving output through the same MIDI port the device is connected. The rest I'll figure out myself.
I'm using Windows and Python 3.5. Thank you for your time.
Upvotes: 3
Views: 1359
Reputation: 101
Using loopMIDI worked for me. What it does is simply puts its Output as its Input, so when sending modulation wheel (or other) events to Output (I had to use output.write_short(0xb0, 1, modulation)
, Pygame) it will send those events directly to Input and then it'll be possible to use it as a MIDI input device in workstations and etc.
Upvotes: 2