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.
USBMIDI Class Reference
#include <USBMIDI.h>
Inherits USBDevice.
Public Member Functions | |
USBMIDI (uint16_t vendor_id=0x0700, uint16_t product_id=0x0101, uint16_t product_release=0x0001) | |
Constructor. | |
void | write (MIDIMessage m) |
Send a MIDIMessage. | |
void | attach (void(*fptr)(MIDIMessage)) |
Attach a callback for when a MIDIEvent is received. |
Detailed Description
USBMIDI example.
#include "mbed.h" #include "USBMIDI.h" USBMIDI midi; int main() { while (1) { for(int i=48; i<83; i++) { // send some messages! midi.write(MIDIMessage::NoteOn(i)); wait(0.25); midi.write(MIDIMessage::NoteOff(i)); wait(0.5); } } }
Definition at line 53 of file USBMIDI.h.
Constructor & Destructor Documentation
USBMIDI | ( | uint16_t | vendor_id = 0x0700 , |
uint16_t | product_id = 0x0101 , |
||
uint16_t | product_release = 0x0001 |
||
) |
Constructor.
- Parameters:
-
vendor_id Your vendor_id product_id Your product_id product_release Your preoduct_release
Definition at line 23 of file USBMIDI.cpp.
Member Function Documentation
void attach | ( | void(*)(MIDIMessage) | fptr ) |
Attach a callback for when a MIDIEvent is received.
- Parameters:
-
fptr function pointer
Definition at line 76 of file USBMIDI.cpp.
void write | ( | MIDIMessage | m ) |
Generated on Tue Jul 12 2022 12:22:51 by
