proMidi + Controller
in
Contributed Library Questions
•
2 years ago
Hi, I'm working on a project that uses an iPad as a MIDI controller to drive audio-reactive visuals.
I'm using the proMidi library to receive MIDI signals in Processing from OSCulator and it's working very well. However, I cannot set different buttons on my controller to different things. Here's an example of the code:
- void noteOn(promidi.Note note, int device, int channel){
- int vel = note.getVelocity();
- int pit = note.getPitch();
- hVal = 130;
- }
Is midi mapping possible with proMidi? Would appreciate any help I can get. Thanks so much in advance.
1