We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I have a sequence like this
MIDI.setVolume(0, 120, 0); MIDI.noteOn(0,50,127,0); MIDI.setVolume(0, 50, 1); MIDI.noteOn(0,50,127,1); MIDI.setVolume(0, 25, 2); MIDI.noteOn(0,50,127,2);
I expect that each note would be quieter than the last. Instead, all three notes are of the same volume.
This might also be the responsible for the lack of a fadeout in MIDIs with type 7 controller events, like this one
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
If I have a sequence like this
I expect that each note would be quieter than the last. Instead, all three notes are of the same volume.
This might also be the responsible for the lack of a fadeout in MIDIs with type 7 controller events, like this one
The text was updated successfully, but these errors were encountered: