Newbie : sending midi message to pitch bend a note - a simple example ?

This will let you pitch-bend with a pot connected to A0:

void loop(){
    PitchWheelChange(map(analogRead(A0),0, 1023, -8000, 8000));
}
2 Likes