Replies: 1 comment
-
You can read more about RPN/NRPN here: The following example shows how to listen to RPN/NRPN, but because of their complexity, it's not built-in the library, and how to send them: The key part for sending is at the end: // Send a RPN sequence (Pitch Bend sensitivity) on channel 1
const midi::Channel channel = 1;
const byte semitones = 12;
const byte cents = 42;
MIDI.beginRpn(midi::RPN::PitchBendSensitivity, channel);
MIDI.sendRpnValue(semitones, cents, channel);
MIDI.endRpn(channel); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This library is incredibly versatile and much appreciated!
I'm an beginner and I'm having trouble figuring out how to use it to send out NRPN values using the NRPN function in the library. Google has little useful information and I have not seen any examples using e.g. beginNrpn() and sendNrpnValue()
Would it be possible to post a short simple example on how to send out NRPN, for example in response to CC's?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions