Return the bytes for a program change controller event.
(self, channel, instr)
| 204 | return self.controller_event(BANK_SELECT, channel, bank) |
| 205 | |
| 206 | def program_change_event(self, channel, instr): |
| 207 | """Return the bytes for a program change controller event.""" |
| 208 | return self.midi_event(PROGRAM_CHANGE, channel, instr) |
| 209 | |
| 210 | def set_tempo(self, bpm): |
| 211 | """Convert the bpm to a midi event and write it to the track_data.""" |
no test coverage detected