From 7a3cc031f00d47fd7667cb2c6d74216bcf4eacad Mon Sep 17 00:00:00 2001 From: John Park Date: Wed, 3 May 2023 20:49:31 -0700 Subject: [PATCH] fixed held note error in mono note mode --- Hexpad/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hexpad/code.py b/Hexpad/code.py index f5a83b587..ab57addd6 100644 --- a/Hexpad/code.py +++ b/Hexpad/code.py @@ -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):