#include <MIDI_Parsers/MIDI_MessageTypes.hpp>
Definition at line 175 of file MIDI_MessageTypes.hpp.
Public Member Functions | |
ChannelMessage (MIDIMessageType type, Channel channel, uint8_t data1, uint8_t data2=0x00, Cable cable=CABLE_1) | |
Constructor. | |
ChannelMessage (const MIDIMessage &msg) | |
MIDIMessageType | getMessageType () const |
Get the MIDI message type. | |
void | setMessageType (MIDIMessageType type) |
Set the MIDI message type. | |
Channel | getChannel () const |
Get the MIDI channel of the message. | |
void | setChannel (Channel channel) |
Set the MIDI channel of the message. | |
MIDIChannelCable | getChannelCable () const |
Get the MIDI channel and cable number. More... | |
MIDIAddress | getAddress () const |
Get the MIDI address of this message, using data1 as the address. More... | |
bool | hasTwoDataBytes () const |
Check whether this message has one or two data bytes. More... | |
MIDIMessage (uint8_t header, uint8_t data1, uint8_t data2, Cable cable=CABLE_1) | |
Constructor. | |
MIDIMessage (MIDIMessageType header, uint8_t data1, uint8_t data2, Cable cable=CABLE_1) | |
Constructor. | |
bool | operator== (MIDIMessage other) const |
Check for equality. | |
bool | operator!= (MIDIMessage other) const |
Check for inequality. | |
uint8_t | getData1 () const |
Get the first data byte. | |
uint8_t | getData2 () const |
Get the second data byte. | |
void | setData1 (uint8_t data) |
Set the first data byte. | |
void | setData2 (uint8_t data) |
Set the second data byte. | |
Cable | getCable () const |
Get the MIDI USB cable number of the message. | |
void | setCable (Cable cable) |
Set the MIDI USB cable number of the message. | |
bool | hasValidChannelMessageHeader () const |
Check whether the header is a valid header for a channel message. | |
bool | hasValidSystemCommonHeader () const |
Check whether the header is a valid header for a System Common message. More... | |
uint16_t | getData14bit () const |
If Data 1 and Data 2 represent a single 14-bit number, you can use this method to retrieve that number. | |
void | setData14bit (uint16_t data) |
If Data 1 and Data 2 represent a single 14-bit number, you can use this method to set that number. | |
void | sanitize () |
Make sure that the status byte has the most significant bit set and the data bytes have the most significant bits cleared. | |
Public Attributes | |
uint8_t | header |
MIDI status byte (message type and channel). | |
uint8_t | data1 |
First MIDI data byte. | |
uint8_t | data2 |
First MIDI data byte. | |
Cable | cable |
USB MIDI cable number;. | |
|
inline |
Get the MIDI channel and cable number.
Definition at line 206 of file MIDI_MessageTypes.hpp.
|
inline |
Get the MIDI address of this message, using data1
as the address.
data1
will have a different meaning in those cases. Definition at line 210 of file MIDI_MessageTypes.hpp.
|
inline |
Check whether this message has one or two data bytes.
Returns false if the header is a SysEx, Real-Time or System Common byte.
Definition at line 218 of file MIDI_MessageTypes.hpp.
|
inlineinherited |
Check whether the header is a valid header for a System Common message.
Definition at line 150 of file MIDI_MessageTypes.hpp.