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

◆ sendNrpnValue() [2/2]

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

Send a 14-bit value for the currently selected NRPN number.

Parameters
inValueThe 14-bit value of the selected NRPN.
inChannelThe channel on which the message will be sent (1 to 16).

Definition at line 621 of file MIDI.hpp.

623{;
624 const byte valMsb = 0x7f & (inValue >> 7);
625 const byte valLsb = 0x7f & inValue;
628}
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 DataEntryLSB, DataEntryMSB, and sendControlChange().

+ Here is the call graph for this function: