my midi test

Dependencies:   USBDevice mbed

Revision:
1:a17d202e9a68
Parent:
0:4fc8ef3908b1
--- a/main.cpp	Sun Dec 28 12:04:32 2014 +0000
+++ b/main.cpp	Sun Dec 28 12:06:50 2014 +0000
@@ -1,11 +1,13 @@
 #include "mbed.h"
 #include "USBMIDI.h"
+//#include <string>
+//#include <sstream>
 
 DigitalOut myled(LED1);
 USBMIDI midi;
 
 /*string str;*/
-bool val = false;
+bool valid = false;
 
 void mm(MIDIMessage m) {
     //ostringstream os;
@@ -34,8 +36,8 @@
 int main() {
     midi.attach(&mm);
     while(1) {
-        if (val) {
-            val=!val;
+        if (valid) {
+            valid=false;
             //printf("%s\r\n",/*str.c_str()*/);
         }
         wait_ms(1);