-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
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
Pedal Pitch Bend +- octave #1099
Comments
By moving the midpoint from 0 to 7900 and adjusting MaxVal, I adjusted the counter to increase the tone.
All that remains is to combine them and expand the pitch range - please advise! |
(Untested) Control_Surface.sendControlChange(MIDI_CC::RPN_MSB, 0x00);
Control_Surface.sendControlChange(MIDI_CC::RPN_LSB, 0x00);
Control_Surface.sendControlChange(MIDI_CC::Data_Entry_MSB, 12);
Control_Surface.sendControlChange(MIDI_CC::Data_Entry_LSB, 0);
Control_Surface.sendControlChange(MIDI_CC::RPN_MSB, 0x7F);
Control_Surface.sendControlChange(MIDI_CC::RPN_LSB, 0x7F); |
Pieter, thanks for your response (this is not your library's problem).
|
Are you using the latest version of the library? |
I updated the library and all my sketches stopped compiling (they are all on your library). |
I updated all the libraries the sketch worked - Great!!! |
Thanks for the best library!
I want to make a pitch bend pedal (like Wammy).
What I've got so far: I found (here) and adjusted the sketch for my homemade pedal on a Hall sensor.
(Arduino Pro Micro).
Now the pedal lowers the sound by one tone.
I want the sound to be lowered by an octave.
And I would also like (with an additional button) to invert the pedal to increase the pitch.
Please tell me how to do this!
The text was updated successfully, but these errors were encountered: