FastLED 3.9.15
Loading...
Searching...
No Matches

◆ beginRpn()

template<class Transport, class Settings, class Platform>
void MidiInterface< Transport, Settings, Platform >::beginRpn ( unsigned inNumber,
Channel inChannel )
inline

Start a Registered Parameter Number frame.

Parameters
inNumberThe 14-bit number of the RPN you want to select.
inChannelThe channel on which the message will be sent (1 to 16).

Definition at line 523 of file MIDI.hpp.

525{
527 {
528 const byte numMsb = 0x7f & (inNumber >> 7);
529 const byte numLsb = 0x7f & inNumber;
533 }
534}
unsigned mCurrentRpnNumber
Definition MIDI.h:279
The main class for MIDI handling. It is templated over the type of serial port to provide abstraction...
Definition MIDI.h:55
void sendControlChange(DataByte inControlNumber, DataByte inControlValue, Channel inChannel)
Send a Control Change message.
Definition MIDI.hpp:270

References mCurrentRpnNumber, RPNLSB, RPNMSB, and sendControlChange().

+ Here is the call graph for this function: