blablabla
Dependencies: MAG3110 MMA8451Q SLCD- TSI USBDevice mbed
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 33 of file USBMIDI.cpp.
void write | ( | MIDIMessage | m ) |
Generated on Tue Jul 12 2022 16:20:44 by 1.7.2