From f6f367440bf8030d55d155e22b9cea4b0e07ae47 Mon Sep 17 00:00:00 2001 From: Mads Kjeldgaard Date: Fri, 10 May 2024 23:19:39 +0200 Subject: [PATCH] fix: Do not have midi thru on by default --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 59dec9b..5c754eb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,6 +25,9 @@ void setup() { usbMidi.begin(); MIDI.begin(); + // Turn midi thru off + MIDI.turnThruOff(); + // Set the MIDI note on handling function MIDI.setHandleNoteOn(handle_midi_note_on);