Merge pull request #2488 from jedgarpark/hexboard

fixed held note error in mono note mode
This commit is contained in:
Anne Barela 2023-05-05 11:57:06 -04:00 committed by GitHub
commit 19d0978f12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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):