Sends a MIDI program change message to a specified MIDI channel with a given program number.
midi_prog(channel, program_number)
Send a “program change” on channel 1, with program number 45 (a specific instrument)
midi_prog(1, 45); // returns 1 if successful
Send a “program change” on channel 0, with program number 10 (a different instrument)
midi_prog(0, 10); // returns 1 if successful