Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
00001 // Hello World example for the USBMIDI library 00002 00003 #include "mbed.h" 00004 #include "USBMIDI.h" 00005 00006 USBMIDI midi; 00007 00008 int main() { 00009 while (1) { 00010 for(int i=48; i<83; i++) { // send some messages! 00011 midi.write(MIDIMessage::NoteOn(i)); 00012 wait(0.25); 00013 midi.write(MIDIMessage::NoteOff(i)); 00014 wait(0.5); 00015 } 00016 } 00017 }
Generated on Tue Jul 12 2022 18:00:22 by
