How to read the initial state of a MIDI Foot Controller?
问题 I know MIDI allows me to read the state of a MIDI Foot Controller by catching a MIDI Message indicating a Control Change. But what if the user has not touched/changed the control yet? Am I still able to read the state/value? What would be the way to do that? This is my code for catching Midi Messages using OSX CoreMIDI void initMidi() { MIDIClientRef midiClient; MIDIPortRef inputPort; OSStatus status; MIDIEndpointRef src; status = MIDIClientCreate(CFSTR("testing"), NULL, NULL, &midiClient);