Test program for MIDI Library (Nucleo F446RE)

Dependencies:   MIDI mbed

Revision:
1:2380cb43b3ae
Parent:
0:418e035ba7e9
--- a/main.cpp	Fri May 04 21:54:39 2018 +0000
+++ b/main.cpp	Fri May 04 22:10:20 2018 +0000
@@ -16,14 +16,14 @@
 
 void handleNoteOn(byte inChannel, byte inNote, byte inVelocity)
 {
+    midi.sendNoteOn(inNote, inVelocity, inChannel);
     printNoteOnOff("On ", inChannel, inNote, inVelocity);
-    midi.sendNoteOn(inNote, inVelocity, inChannel);
 }
 
 void handleNoteOff(byte inChannel, byte inNote, byte inVelocity)
 {
+    midi.sendNoteOff(inNote, inVelocity, inChannel);
     printNoteOnOff("Off", inChannel, inNote, inVelocity);
-    midi.sendNoteOff(inNote, inVelocity, inChannel);
 }
 
 // -----------------------------------------------------------------------------