Represents a MIDI RPN (registered parameter number) or NRPN (non-registered parameter number) message. More...
#include <juce_MidiRPN.h>
Public Attributes | |
int | channel |
Midi channel of the message, in the range 1 to 16. More... | |
bool | is14BitValue |
True if the value uses 14-bit resolution (LSB + MSB); false if the value is 7-bit (MSB only). More... | |
bool | isNRPN |
True if this message is an NRPN; false if it is an RPN. More... | |
int | parameterNumber |
The 14-bit parameter index, in the range 0 to 16383 (0x3fff). More... | |
int | value |
The parameter value, in the range 0 to 16383 (0x3fff). More... | |
Represents a MIDI RPN (registered parameter number) or NRPN (non-registered parameter number) message.
{Audio}
int juce::MidiRPNMessage::channel |
Midi channel of the message, in the range 1 to 16.
bool juce::MidiRPNMessage::is14BitValue |
True if the value uses 14-bit resolution (LSB + MSB); false if the value is 7-bit (MSB only).
bool juce::MidiRPNMessage::isNRPN |
True if this message is an NRPN; false if it is an RPN.
int juce::MidiRPNMessage::parameterNumber |
The 14-bit parameter index, in the range 0 to 16383 (0x3fff).
int juce::MidiRPNMessage::value |
The parameter value, in the range 0 to 16383 (0x3fff).
If the message contains no value LSB, the value will be in the range 0 to 127 (0x7f).