fixed held note error in mono note mode

This commit is contained in:
John Park 2023-05-03 20:49:31 -07:00
parent 9e0eacaaaf
commit 7a3cc031f0

View file

@ -199,7 +199,7 @@ def send_note_off(note_num):
midi_usb.send(NoteOff(note_num+12, 0))
else:
note_num = root_notes[note_num] + (12*octv)
midi_usb.send(NoteOff(note, 0))
midi_usb.send(NoteOff(note_num, 0))
def send_midi_panic():
for x in range(128):