From e2e97d17e689f793615accb70b55a875a82133ec Mon Sep 17 00:00:00 2001 From: lathoub Date: Tue, 3 Mar 2020 21:49:41 +0100 Subject: [PATCH] Update MidiBle.ino --- examples/MidiBle/MidiBle.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/MidiBle/MidiBle.ino b/examples/MidiBle/MidiBle.ino index b69621e..919f9dc 100644 --- a/examples/MidiBle/MidiBle.ino +++ b/examples/MidiBle/MidiBle.ino @@ -42,8 +42,8 @@ void loop() { t0 = millis(); - // MIDI.sendNoteOn(60, 127, 1); // note 60, velocity 127 on channel 1 - // MIDI.sendNoteOff(60, 0, 1); + MIDI.sendNoteOn(60, 127, 1); // note 60, velocity 127 on channel 1 + MIDI.sendNoteOff(60, 0, 1); } }