Hi there,
i wonder if Pieter can answer my question:
I use an encoder to cycle through my list of presets on my softsynth and the encoder skipping a lot of presets, 100s at a time and it's only going in one direction.
This is my code:
// -------------------------------
// New Preset Navigator and Select Button
// -------------------------------
const int speedMultiplier = 1;
// Navigate Through Presets
CCRotaryEncoder enc {
{16, 17}, // pins - Playhead (Beats, Scrubbing)
MIDI_CC::General_Purpose_Controller_5, // address
speedMultiplier, // multiplier
1 // pulses per click
};
Thanks.