Return bytes for a 'note_on' event.
(self, channel, note, velocity)
| 178 | return self.midi_event(NOTE_OFF, channel, note, velocity) |
| 179 | |
| 180 | def note_on(self, channel, note, velocity): |
| 181 | """Return bytes for a 'note_on' event.""" |
| 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.""" |