Return bytes for a 'note off' event.
(self, channel, note, velocity)
| 174 | return self.delta_time + bytes([status_byte] + params) |
| 175 | |
| 176 | def note_off(self, channel, note, velocity): |
| 177 | """Return bytes for a 'note off' event.""" |
| 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.""" |