|
bool | MidiInterface< Transport, _Settings, _Platform >::read () |
| Read messages from the serial port using the main input channel. More...
|
|
bool | MidiInterface< Transport, _Settings, _Platform >::read (Channel inChannel) |
| Read messages on a specified channel. More...
|
|
MidiType | MidiInterface< Transport, _Settings, _Platform >::getType () const |
| Get the last received message's type. More...
|
|
Channel | MidiInterface< Transport, _Settings, _Platform >::getChannel () const |
| Get the channel of the message stored in the structure. More...
|
|
DataByte | MidiInterface< Transport, _Settings, _Platform >::getData1 () const |
| Get the first data byte of the last received message. More...
|
|
DataByte | MidiInterface< Transport, _Settings, _Platform >::getData2 () const |
| Get the second data byte of the last received message. More...
|
|
const byte * | MidiInterface< Transport, _Settings, _Platform >::getSysExArray () const |
| Get the System Exclusive byte array. More...
|
|
unsigned | MidiInterface< Transport, _Settings, _Platform >::getSysExArrayLength () const |
| Get the length of the System Exclusive array. More...
|
|
bool | MidiInterface< Transport, _Settings, _Platform >::check () const |
| Check if a valid message is stored in the structure. More...
|
|
Channel | MidiInterface< Transport, _Settings, _Platform >::getInputChannel () const |
|
void | MidiInterface< Transport, _Settings, _Platform >::setInputChannel (Channel inChannel) |
| Set the value for the input MIDI channel. More...
|
|
static MidiType | MidiInterface< Transport, _Settings, _Platform >::getTypeFromStatusByte (byte inStatus) |
| Extract an enumerated MIDI type from a status byte. More...
|
|
static Channel | MidiInterface< Transport, _Settings, _Platform >::getChannelFromStatusByte (byte inStatus) |
| Returns channel in the range 1-16. More...
|
|
static bool | MidiInterface< Transport, _Settings, _Platform >::isChannelMessage (MidiType inType) |
|
void | MidiInterface< Transport, _Settings, _Platform >::disconnectCallbackFromType (MidiType inType) |
| Detach an external function from the given type. More...
|
|
template<class Transport , class Settings , class Platform >
Extract an enumerated MIDI type from a status byte.
This is a utility static method, used internally, made public so you can handle MidiTypes more easily.
Definition at line 1218 of file MIDI.hpp.
1220 if ((inStatus < 0x80) ||
1226 if (inStatus < 0xf0)