Return the bytes for a MIDI controller event.
(self, channel, contr_nr, contr_val)
| 182 | return self.midi_event(NOTE_ON, channel, note, velocity) |
| 183 | |
| 184 | def controller_event(self, channel, contr_nr, contr_val): |
| 185 | """Return the bytes for a MIDI controller event.""" |
| 186 | return self.midi_event(CONTROLLER, channel, contr_nr, contr_val) |
| 187 | |
| 188 | def reset(self): |
| 189 | """Reset track_data and delta_time.""" |