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

◆ beginNrpn()

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

Start a Non-Registered Parameter Number frame.

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

Definition at line 603 of file MIDI.hpp.

605{
607 {
608 const byte numMsb = 0x7f & (inNumber >> 7);
609 const byte numLsb = 0x7f & inNumber;
613 }
614}
unsigned mCurrentNrpnNumber
Definition MIDI.h:280
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 mCurrentNrpnNumber, NRPNLSB, NRPNMSB, and sendControlChange().

+ Here is the call graph for this function: